From: Kostya Serebryany Date: Tue, 14 Feb 2012 00:02:35 +0000 (+0000) Subject: [asan] fix asan-vs-gvn.ll test (it did not actually check much before this change) X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=747c02c768e6babb3bbe572d0891b6148e5d3285;p=oota-llvm.git [asan] fix asan-vs-gvn.ll test (it did not actually check much before this change) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150441 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Instrumentation/AddressSanitizer/asan-vs-gvn.ll b/test/Instrumentation/AddressSanitizer/asan-vs-gvn.ll index e7a57136323..c0fe15e9fce 100644 --- a/test/Instrumentation/AddressSanitizer/asan-vs-gvn.ll +++ b/test/Instrumentation/AddressSanitizer/asan-vs-gvn.ll @@ -24,10 +24,17 @@ entry: ; CHECK: @test_widening_bad ; CHECK: __asan_report_load1 ; CHECK: __asan_report_load1 -; CHECK-ret i32 +; CHECK-NOT: __asan_report +; We can not use check for "ret" here because __asan_report_load1 calls live after ret. +; CHECK: end_test_widening_bad } -;; Accessing byets 4 and 5. Ok to widen to i16. +define void @end_test_widening_bad() { + entry: + ret void +} + +;; Accessing bytes 4 and 5. Ok to widen to i16. define i32 @test_widening_ok(i8* %P) nounwind ssp noredzone address_safety { entry: @@ -38,6 +45,12 @@ entry: %add = add nsw i32 %conv, %conv2 ret i32 %add ; CHECK: @test_widening_ok -; CHECK: __asan_report_load1 -; CHECK-ret i32 +; CHECK: __asan_report_load2 +; CHECK-NOT: __asan_report +; CHECK: end_test_widening_ok +} + +define void @end_test_widening_ok() { + entry: + ret void }