mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Delete getAliasedGlobal.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209040 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -557,7 +557,7 @@ bool DataFlowSanitizer::runOnModule(Module &M) {
|
||||
++i;
|
||||
// Don't stop on weak. We assume people aren't playing games with the
|
||||
// instrumentedness of overridden weak aliases.
|
||||
if (Function *F = dyn_cast<Function>(GA->getAliasedGlobal())) {
|
||||
if (Function *F = dyn_cast<Function>(GA->getAliasee())) {
|
||||
bool GAInst = isInstrumented(GA), FInst = isInstrumented(F);
|
||||
if (GAInst && FInst) {
|
||||
addGlobalNamePrefix(GA);
|
||||
|
Reference in New Issue
Block a user