diff options
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGen/volatile-1.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/test/CodeGen/volatile-1.c b/clang/test/CodeGen/volatile-1.c index d8ce39acd9f..f54afffdada 100644 --- a/clang/test/CodeGen/volatile-1.c +++ b/clang/test/CodeGen/volatile-1.c @@ -305,7 +305,9 @@ void test() { extern volatile enum X x; // CHECK: define void @test1() void test1() { - // CHECK-NEXT: : + extern void test1_helper(void); + test1_helper(); + // CHECK: call void @test1_helper() // CHECK-NEXT: ret void x; (void) x; |