summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorLeonard Chan <leonardchan@google.com>2018-10-17 16:21:19 +0000
committerLeonard Chan <leonardchan@google.com>2018-10-17 16:21:19 +0000
commit4dd72fa4f69f00a0459ce7dbdb42e98191af2d6c (patch)
tree47a87a7a52c1f907908088086886ddf268e5ee7e /clang
parente365157ba3ce0e9e3b06718543113997c1636716 (diff)
downloadbcm5719-llvm-4dd72fa4f69f00a0459ce7dbdb42e98191af2d6c.tar.gz
bcm5719-llvm-4dd72fa4f69f00a0459ce7dbdb42e98191af2d6c.zip
Fix for failing unit tests on some bots after r344696.
llvm-svn: 344701
Diffstat (limited to 'clang')
-rw-r--r--clang/test/CodeGen/asan-new-pm.ll25
1 files changed, 2 insertions, 23 deletions
diff --git a/clang/test/CodeGen/asan-new-pm.ll b/clang/test/CodeGen/asan-new-pm.ll
index 4cd24cb2f02..c8c65e96ea0 100644
--- a/clang/test/CodeGen/asan-new-pm.ll
+++ b/clang/test/CodeGen/asan-new-pm.ll
@@ -1,31 +1,10 @@
-; RUN: %clang_cc1 -S -emit-llvm -o - -fexperimental-new-pass-manager -fsanitize=address %s | FileCheck %s
+; RUN: %clang_cc1 -S -emit-llvm -o - -fexperimental-new-pass-manager -fsanitize=address -triple=x86_64-linux %s | FileCheck %s
; CHECK: @llvm.global_ctors = {{.*}}@asan.module_ctor
+; CHECK: declare void @__asan_loadN
define i32 @test_load(i32* %a) sanitize_address {
entry:
-; CHECK: %0 = ptrtoint i32* %a to i64
-; CHECK: %1 = lshr i64 %0, 3
-; CHECK: %2 = add i64 %1, 2147450880
-; CHECK: %3 = inttoptr i64 %2 to i8*
-; CHECK: %4 = load i8, i8* %3
-; CHECK: %5 = icmp ne i8 %4, 0
-; CHECK: br i1 %5, label %6, label %12, !prof !0
-
-; CHECK:; <label>:6: ; preds = %entry
-; CHECK: %7 = and i64 %0, 7
-; CHECK: %8 = add i64 %7, 3
-; CHECK: %9 = trunc i64 %8 to i8
-; CHECK: %10 = icmp sge i8 %9, %4
-; CHECK: br i1 %10, label %11, label %12
-
-; CHECK:; <label>:11: ; preds = %6
-; CHECK: call void @__asan_report_load4(i64 %0)
-; CHECK: call void asm sideeffect "", ""()
-; CHECK: unreachable
-
-; CHECK:; <label>:12: ; preds = %6, %entry
-
%tmp1 = load i32, i32* %a, align 4
ret i32 %tmp1
}
OpenPOWER on IntegriCloud