Skip to content

Commit

Permalink
unit test tweak
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159225 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
atrick committed Jun 26, 2012
1 parent 4622fe8 commit 7bbf9d1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/CodeGen/branch-target-layout.c
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 7bbf9d1

Please sign in to comment.