diff options
author | David Majnemer <david.majnemer@gmail.com> | 2015-02-18 02:28:15 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2015-02-18 02:28:15 +0000 |
commit | 5927e7b6815d19c5381053d948925b621d17bdfc (patch) | |
tree | 28006069a8a3322cdc1e37e0470bf8c61921cbf2 | |
parent | be525396508bf2e4ad3765192575457d93eedad4 (diff) | |
download | bcm5719-llvm-5927e7b6815d19c5381053d948925b621d17bdfc.tar.gz bcm5719-llvm-5927e7b6815d19c5381053d948925b621d17bdfc.zip |
CodeGen: Relax a FileCheck line for SystemZ
llvm-svn: 229617
-rw-r--r-- | clang/test/CodeGen/atomic_ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/atomic_ops.c b/clang/test/CodeGen/atomic_ops.c index 4f9bc410376..357655047d6 100644 --- a/clang/test/CodeGen/atomic_ops.c +++ b/clang/test/CodeGen/atomic_ops.c @@ -21,7 +21,7 @@ extern _Atomic _Bool b; _Bool bar() { // CHECK-LABEL: @bar -// CHECK: %[[load:.*]] = load atomic i8* @b seq_cst, align 1 +// CHECK: %[[load:.*]] = load atomic i8* @b seq_cst // CHECK: %[[tobool:.*]] = trunc i8 %[[load]] to i1 // CHECK: ret i1 %[[tobool]] return b; |