diff options
Diffstat (limited to 'clang/test/CodeGen/atomic_ops.c')
-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 050b543c478..1d36601c271 100644 --- a/clang/test/CodeGen/atomic_ops.c +++ b/clang/test/CodeGen/atomic_ops.c @@ -22,7 +22,7 @@ extern _Atomic _Bool b; _Bool bar() { // CHECK-LABEL: @bar -// CHECK: %[[load:.*]] = load atomic i8* @b seq_cst +// CHECK: %[[load:.*]] = load atomic i8, i8* @b seq_cst // CHECK: %[[tobool:.*]] = trunc i8 %[[load]] to i1 // CHECK: ret i1 %[[tobool]] return b; |