diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-04-28 21:23:38 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-04-28 21:23:38 +0000 |
commit | 49a4b287667a27af8ee0a94dab9005e848f2d80f (patch) | |
tree | 72d7ceb5284ec331cce1ae0672ad7791109529f9 | |
parent | f61b831d7f6a15676b07647f507de80324cb7056 (diff) |
tests: Tweak test to not write to the same temporary twice, in the hopes of avoiding sporadic win32 failures about renaming a temporary.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130439 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenObjC/bitfield-access.m | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/CodeGenObjC/bitfield-access.m b/test/CodeGenObjC/bitfield-access.m index 16b0001ddf..ab776abd4e 100644 --- a/test/CodeGenObjC/bitfield-access.m +++ b/test/CodeGenObjC/bitfield-access.m @@ -1,7 +1,8 @@ -// RUN: %clang_cc1 -triple i386-apple-darwin10 -emit-llvm -o %t %s -// RUN: FileCheck -check-prefix=CHECK-I386 < %t %s -// RUN: %clang_cc1 -triple armv6-apple-darwin10 -target-abi apcs-gnu -emit-llvm -o %t %s -// RUN: FileCheck -check-prefix=CHECK-ARM < %t %s +// RUN: %clang_cc1 -triple i386-apple-darwin10 -emit-llvm -o %t1 %s +// RUN: FileCheck -check-prefix=CHECK-I386 < %t1 %s + +// RUN: %clang_cc1 -triple armv6-apple-darwin10 -target-abi apcs-gnu -emit-llvm -o %t2 %s +// RUN: FileCheck -check-prefix=CHECK-ARM < %t2 %s @interface I0 { @public |