diff options
Diffstat (limited to 'clang/test/CodeGen/bool_test.c')
-rw-r--r-- | clang/test/CodeGen/bool_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/bool_test.c b/clang/test/CodeGen/bool_test.c index 83d83307715..a4aa669f16c 100644 --- a/clang/test/CodeGen/bool_test.c +++ b/clang/test/CodeGen/bool_test.c @@ -8,7 +8,7 @@ void f(_Bool *x, _Bool *y) { *x = *y; } -// CHECK: define void @f( +// CHECK-LABEL: define void @f( // CHECK: [[FROMMEM:%.*]] = load i32* % // CHECK: [[BOOLVAL:%.*]] = trunc i32 [[FROMMEM]] to i1 // CHECK: [[TOMEM:%.*]] = zext i1 [[BOOLVAL]] to i32 |