forked from OSchip/llvm-project
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
This commit is contained in:
parent
64828a1f73
commit
e0482760fc
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue