diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-04 17:31:19 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-04 17:31:19 +0000 |
commit | 5b9e9682f186ce772de8beb160fc912b60ae5148 (patch) | |
tree | ae6d109677c66d2890e3202d5990de6579bfe4ea | |
parent | 3e2cbc3161d975b5770979265d794bcf387a5f97 (diff) | |
download | bcm5719-llvm-5b9e9682f186ce772de8beb160fc912b60ae5148.tar.gz bcm5719-llvm-5b9e9682f186ce772de8beb160fc912b60ae5148.zip |
Support "asm" renaming of external symbols.
- PR3698.
llvm-svn: 66038
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 6 | ||||
-rw-r--r-- | clang/test/CodeGen/2008-07-31-asm-labels.c | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 558c940713a..33aff2553fd 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -605,6 +605,12 @@ void CodeGenModule::EmitGlobalDefinition(const ValueDecl *D) { if (D->getAttr<WeakAttr>()) GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage); + + if (const AsmLabelAttr *ALA = D->getAttr<AsmLabelAttr>()) { + // Prefaced with special LLVM marker to indicate that the name + // should not be munged. + GV->setName("\01" + ALA->getLabel()); + } } // Make sure the result is of the correct type. diff --git a/clang/test/CodeGen/2008-07-31-asm-labels.c b/clang/test/CodeGen/2008-07-31-asm-labels.c index 1b5e0ca91da..8aba2d39a72 100644 --- a/clang/test/CodeGen/2008-07-31-asm-labels.c +++ b/clang/test/CodeGen/2008-07-31-asm-labels.c @@ -1,6 +1,8 @@ // RUN: clang -emit-llvm -o %t %s && // RUN: grep "@pipe()" %t | count 0 && // RUN: grep '_thisIsNotAPipe' %t | count 3 && +// RUN: grep 'g0' %t | count 0 && +// RUN: grep '_renamed' %t | count 2 && // RUN: clang -DUSE_DEF -emit-llvm -o %t %s && // RUN: grep "@pipe()" %t | count 0 && // RUN: grep '_thisIsNotAPipe' %t | count 3 @@ -23,3 +25,9 @@ void pipe(int arg) { int x = 10; } #endif + +// PR3698 +extern int g0 asm("_renamed"); +int f2() { + return g0; +} |