diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-05-16 22:37:03 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-05-16 22:37:03 +0000 |
| commit | e0098928c9dfd8ae359efdb2de1fa5c658f7ad87 (patch) | |
| tree | 8774ca0f8c6423a5222c1863286ce7e7af7fc2bd /llvm/lib/Target/ARM64 | |
| parent | 48369d1b8e34635257ecc2d09cae16e1eb3f28ad (diff) | |
| download | bcm5719-llvm-e0098928c9dfd8ae359efdb2de1fa5c658f7ad87.tar.gz bcm5719-llvm-e0098928c9dfd8ae359efdb2de1fa5c658f7ad87.zip | |
Delete getAliasedGlobal.
llvm-svn: 209040
Diffstat (limited to 'llvm/lib/Target/ARM64')
| -rw-r--r-- | llvm/lib/Target/ARM64/ARM64FastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM64/ARM64FastISel.cpp b/llvm/lib/Target/ARM64/ARM64FastISel.cpp index f8b54d033f7..f4bf616559a 100644 --- a/llvm/lib/Target/ARM64/ARM64FastISel.cpp +++ b/llvm/lib/Target/ARM64/ARM64FastISel.cpp @@ -245,7 +245,7 @@ unsigned ARM64FastISel::ARM64MaterializeGV(const GlobalValue *GV) { // to peer through any aliases to find out if that rule applies. const GlobalValue *TLSGV = GV; if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV)) - TLSGV = GA->getAliasedGlobal(); + TLSGV = GA->getAliasee(); if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(TLSGV)) if (GVar->isThreadLocal()) |

