]> granicus.if.org Git - clang/commitdiff
Reverse the code gen. enabled part of test until I can figure out
authorFariborz Jahanian <fjahanian@apple.com>
Tue, 9 Mar 2010 21:26:24 +0000 (21:26 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Tue, 9 Mar 2010 21:26:24 +0000 (21:26 +0000)
how to check the code pattern no matter how clang is built.

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

test/CodeGenObjC/id-isa-codegen.m

index a1f3d66a59e62e14bf8b18fcda6e52259d925691..cc71e7c6d000c7ceaa1406800afbb4d387e943db 100644 (file)
@@ -1,5 +1,4 @@
-// RUN: %clang_cc1 -triple x86_64-apple-darwin10  -emit-llvm -o - %s | FileCheck -check-prefix LP64 %s
-// RUN: %clang_cc1 -triple i386-apple-darwin9  -emit-llvm -o - %s | FileCheck -check-prefix LP32 %s
+// RUN: %clang_cc1 -emit-llvm -o %t %s
 
 typedef struct objc_class *Class;
 
@@ -64,10 +63,3 @@ id Test2() {
     ((id)cat)->isa = dynamicSubclass;
 }
 @end
-// CHECK-LP64: %tmp2 = load i8** %
-// CHECK-LP64: %1 = bitcast i8* %tmp2 to i8**
-// CHECK-LP64: store i8* %tmp, i8** %1
-
-// CHECK-LP32: %tmp2 = load i8** %
-// CHECK-LP32: %1 = bitcast i8* %tmp2 to i8**
-// CHECK-LP32: store i8* %tmp, i8** %1