]> granicus.if.org Git - clang/commitdiff
Fix tests in order for them to not fail after r252604.
authorIgor Laevsky <igmyrj@gmail.com>
Wed, 18 Nov 2015 14:40:41 +0000 (14:40 +0000)
committerIgor Laevsky <igmyrj@gmail.com>
Wed, 18 Nov 2015 14:40:41 +0000 (14:40 +0000)
Some expected attributes appear to be incorrect after
optimizations are run and llvm will strip them. Use -O0
so that llvm will not have a chance to remove them.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253458 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenObjC/optimize-ivar-offset-load.m

index 0317c094033fcfc72459db05dd425b1ca445fa14..6a073dbd29c19c2ed92bfe1109c9c9a7bf77e335 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -triple x86_64-apple-darwin10  -Os -emit-llvm %s -o -  | FileCheck %s
+// RUN: %clang_cc1 -triple x86_64-apple-darwin10  -O0 -emit-llvm %s -o -  | FileCheck %s
 // rdar://16095748
 
 @interface NSObject 
@@ -31,7 +31,7 @@ extern void foo(int);
 // CHECK: [[ADDPTR:%.*]] = getelementptr inbounds i8, i8* [[THREE]], i64 [[IVAR]]
 // CHECK: [[FOUR:%.*]] = bitcast i8* [[ADDPTR]] to i32*
 // CHECK: [[FIVE:%.*]] = load i32, i32* [[FOUR]], align 4
-// CHECK:   tail call void @foo(i32 [[FIVE]])
+// CHECK:   call void @foo(i32 [[FIVE]])
 
 @implementation SampleClass
 + (SampleClass*) new { return 0; }