diff options
author | Andrew Trick <atrick@apple.com> | 2012-06-26 21:15:49 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-06-26 21:15:49 +0000 |
commit | f9ca2b07014d070e8959f14734a221606fdd3e81 (patch) | |
tree | 0c3ea178d288029e65da335223dddd7a75b8e1e3 /clang/test/CodeGen | |
parent | b063d93cfb6472bc7e6cdfb3565bf8a8c8f74fcb (diff) | |
download | bcm5719-llvm-f9ca2b07014d070e8959f14734a221606fdd3e81.tar.gz bcm5719-llvm-f9ca2b07014d070e8959f14734a221606fdd3e81.zip |
unit test tweak
llvm-svn: 159225
Diffstat (limited to 'clang/test/CodeGen')
-rw-r--r-- | clang/test/CodeGen/branch-target-layout.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/clang/test/CodeGen/branch-target-layout.c b/clang/test/CodeGen/branch-target-layout.c index b93a0c7a4bc..a6475d7ef11 100644 --- a/clang/test/CodeGen/branch-target-layout.c +++ b/clang/test/CodeGen/branch-target-layout.c @@ -13,10 +13,10 @@ void calla(); void callb(); void callc(); -// CHECK: @test -// CHECK: @calla() -// CHECK: @callb() -// CHECK: @callc() +// CHECK: @test1 +// CHECK: @calla +// CHECK: @callb +// CHECK: @callc // CHECK: ret void void test1(int a) { if (a) @@ -26,10 +26,10 @@ void test1(int a) { callc(); } -// CHECK: @test -// CHECK: @callb() -// CHECK: @calla() -// CHECK: @callc() +// CHECK: @test2 +// CHECK: @callb +// CHECK: @calla +// CHECK: @callc // CHECK: ret void void test2(int a) { if (!a) |