OSDN Git Service

Revert r327053.
authorKuba Mracek <mracek@apple.com>
Thu, 8 Mar 2018 20:13:39 +0000 (20:13 +0000)
committerKuba Mracek <mracek@apple.com>
Thu, 8 Mar 2018 20:13:39 +0000 (20:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327055 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/AddressSanitizer.cpp
test/Instrumentation/AddressSanitizer/global_lto_merge.ll [deleted file]

index 6fa764e..8757699 100644 (file)
@@ -2158,13 +2158,6 @@ bool AddressSanitizerModule::InstrumentGlobals(IRBuilder<> &IRB, Module &M, bool
     Initializers[i] = Initializer;
   }
 
-  // Add instrumented globals to llvm.compiler.used list to avoid LTO from
-  // ConstantMerge'ing them.
-  appendToCompilerUsed(M,
-                       ArrayRef<GlobalValue *>(
-                           reinterpret_cast<GlobalValue **>(NewGlobals.data()),
-                           NewGlobals.size()));
-
   std::string ELFUniqueModuleId =
       (UseGlobalsGC && TargetTriple.isOSBinFormatELF()) ? getUniqueModuleId(&M)
                                                         : "";
diff --git a/test/Instrumentation/AddressSanitizer/global_lto_merge.ll b/test/Instrumentation/AddressSanitizer/global_lto_merge.ll
deleted file mode 100644 (file)
index aa02553..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-; RUN: opt < %s -asan -asan-module -S | FileCheck %s
-; RUN: opt < %s -asan -asan-module -constmerge -S | FileCheck %s
-
-target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
-target triple = "x86_64-apple-macosx10.11.0"
-
-%struct = type { i64, i64 }
-
-@a = private unnamed_addr constant %struct { i64 16, i64 16 }, align 8
-@b = private unnamed_addr constant %struct { i64 16, i64 16 }, align 8
-
-; CHECK: @a = {{.*}} %struct
-; CHECK: @b = {{.*}} %struct
-
-; CHECK: @llvm.compiler.used =
-; CHECK-SAME: i8* bitcast ({ %struct, [48 x i8] }* @a to i8*)
-; CHECK-SAME: i8* bitcast ({ %struct, [48 x i8] }* @b to i8*)
-
-define i32 @main(i32, i8** nocapture readnone) {
-  %3 = alloca %struct, align 8
-  %4 = alloca %struct, align 8
-  %5 = bitcast %struct* %3 to i8*
-  call void @llvm.memcpy.p0i8.p0i8.i64(i8* nonnull %5, i8* bitcast (%struct* @a to i8*), i64 16, i32 8, i1 false)
-  %6 = bitcast %struct* %4 to i8*
-  call void @llvm.memcpy.p0i8.p0i8.i64(i8* nonnull %6, i8* bitcast (%struct* @b to i8*), i64 16, i32 8, i1 false)
-  call void asm sideeffect "", "r,r,~{dirflag},~{fpsr},~{flags}"(%struct* nonnull %3, %struct* nonnull %4)
-  ret i32 0
-}
-
-declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i32, i1)