diff options
author | Tim Northover <tnorthover@apple.com> | 2013-07-16 10:22:19 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2013-07-16 10:22:19 +0000 |
commit | e0482760fc02741a062cb396af506487cbe2e828 (patch) | |
tree | b0f47df126195a653846689d377c2243fbdf18c8 /clang/test/CodeGen | |
parent | 64828a1f735fee853a251deded61922e6da5ddd0 (diff) | |
download | bcm5719-llvm-e0482760fc02741a062cb396af506487cbe2e828.tar.gz bcm5719-llvm-e0482760fc02741a062cb396af506487cbe2e828.zip |
Fix test on release builds.
Unfortunately I don't think there's a good way to validate branch targets on
release builds. Fortunately it's a minor part of this test (and based on
generic code) so I don't mind dropping it.
llvm-svn: 186398
Diffstat (limited to 'clang/test/CodeGen')
-rw-r--r-- | clang/test/CodeGen/builtins-arm-exclusive.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/CodeGen/builtins-arm-exclusive.c b/clang/test/CodeGen/builtins-arm-exclusive.c index 7d83700c5eb..7eccb9e27bb 100644 --- a/clang/test/CodeGen/builtins-arm-exclusive.c +++ b/clang/test/CodeGen/builtins-arm-exclusive.c @@ -17,8 +17,7 @@ int atomic_inc(int *addr) { // CHECK: [[INC:%.*]] = add nsw i32 [[OLDVAL]], 1 // CHECK: [[FAILURE:%.*]] = tail call i32 @llvm.arm.strex.p0i32(i32 [[INC]], i32* %addr) // CHECK: [[TST:%.*]] = icmp eq i32 [[FAILURE]], 0 -// CHECK: br i1 [[TST]], label %[[LOOP_END:[a-zA-Z0-9.]+]], label {{%[a-zA-Z0-9.]+}} -// CHECK: [[LOOP_END]]: +// CHECK: br i1 [[TST]], label {{%[a-zA-Z0-9.]+}}, label {{%[a-zA-Z0-9.]+}} struct Simple { char a, b; |