diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-10-07 20:14:30 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-10-07 20:14:30 +0000 |
commit | 09c0fab82db36891b227d6366369795e63de7fc7 (patch) | |
tree | 9107cfa845673c471726caaa8a645eb10e0fc5c8 /test/CodeGenObjC | |
parent | ed76f4474fcadacdfeeacacc44bbadb1d4faa6ac (diff) |
tests: Tweak test to also match MSVC format.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@115969 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenObjC')
-rw-r--r-- | test/CodeGenObjC/blocks-2.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenObjC/blocks-2.m b/test/CodeGenObjC/blocks-2.m index e9132f33ec..8754ff7c3f 100644 --- a/test/CodeGenObjC/blocks-2.m +++ b/test/CodeGenObjC/blocks-2.m @@ -20,7 +20,7 @@ void test1() { // CHECK: [[N:%.*]] = alloca [[N_T:%.*]], align 8 // CHECK: [[T0:%.*]] = getelementptr inbounds [[N_T]]* [[N]], i32 0, i32 4 - // CHECK-NEXT: store double 1.000000e+01, double* [[T0]], align 8 + // CHECK-NEXT: store double 1.000000e+{{0?}}01, double* [[T0]], align 8 __block double n = 10; // CHECK: invoke void @{{.*}}test1_help |