diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-03-09 22:17:52 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-03-09 22:17:52 +0000 |
commit | 9f3e6a545934a703efd8c8ddebb04c036ae22350 (patch) | |
tree | 5a39814b798e989edf06e4e4b226ad3249ecda0f | |
parent | a4c779eb18b1b72d4ff52d7bf6849ccedfb3b725 (diff) |
Fix the test some more.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@98090 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenObjC/id-isa-codegen.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGenObjC/id-isa-codegen.m b/test/CodeGenObjC/id-isa-codegen.m index 12a7b396bf..e4f5fd9ab5 100644 --- a/test/CodeGenObjC/id-isa-codegen.m +++ b/test/CodeGenObjC/id-isa-codegen.m @@ -65,9 +65,9 @@ id Test2() { } @end // CHECK-LP64: %{{.*}} = load i8** % -// CHECK-LP64: %{{.*}} = bitcast i8* %{{.*}} to i8** -// CHECK-LP64: store i8* %{{.*}}, i8** %{{.*}} +// CHECK-NEXT: %{{.*}} = bitcast i8* %{{.*}} to i8** +// CHECK-NEXT: store i8* %{{.*}}, i8** %{{.*}} // CHECK-LP32: %{{.*}} = load i8** % -// CHECK-LP32: %{{.*}} = bitcast i8* %{{.*}} to i8** -// CHECK-LP32: store i8* %{{.*}}, i8** %{{.*}} +// CHECK-NEXT: %{{.*}} = bitcast i8* %{{.*}} to i8** +// CHECK-NEXT: store i8* %{{.*}}, i8** %{{.*}} |