diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2017-05-16 00:39:01 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2017-05-16 00:39:01 +0000 |
commit | 6f0ecca3b5937623d32105f4eb55ea48387a74b0 (patch) | |
tree | 382ccbf933b88707a49a24968c55e01f4eb03e03 /llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | |
parent | 515d1a6804997e9a393934fdab0b3335a99a23ba (diff) | |
download | bcm5719-llvm-6f0ecca3b5937623d32105f4eb55ea48387a74b0.tar.gz bcm5719-llvm-6f0ecca3b5937623d32105f4eb55ea48387a74b0.zip |
IR: Give function GlobalValue::getRealLinkageName() a less misleading name: dropLLVMManglingEscape().
This function gives the wrong answer on some non-ELF platforms in some
cases. The function that does the right thing lives in Mangler.h. To try to
discourage people from using this function, give it a different name.
Differential Revision: https://reviews.llvm.org/D33162
llvm-svn: 303134
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp index a3b517dfe88..7eea44d6aca 100644 --- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -1686,7 +1686,7 @@ AddressSanitizerModule::CreateMetadataGlobal(Module &M, Constant *Initializer, : GlobalVariable::PrivateLinkage; GlobalVariable *Metadata = new GlobalVariable( M, Initializer->getType(), false, Linkage, Initializer, - Twine("__asan_global_") + GlobalValue::getRealLinkageName(OriginalName)); + Twine("__asan_global_") + GlobalValue::dropLLVMManglingEscape(OriginalName)); Metadata->setSection(getGlobalMetadataSection()); return Metadata; } |