diff options
author | Kalle Raiskila <kalle.raiskila@nokia.com> | 2011-10-13 11:40:03 +0000 |
---|---|---|
committer | Kalle Raiskila <kalle.raiskila@nokia.com> | 2011-10-13 11:40:03 +0000 |
commit | 898f336c515e7af607d1ee05a98319912894f24f (patch) | |
tree | 2b2436d841336f12656a4df5e359ecaf226dc0c5 /test/CodeGen/CellSPU | |
parent | 4e68054b20725f6ec1cac33630258f749fe5debe (diff) |
Mark 'branch indirect' instruction as an indirect branch.
Not having it confused assembly printing of jumptables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141862 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/CellSPU')
-rw-r--r-- | test/CodeGen/CellSPU/jumptable.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/CellSPU/jumptable.ll b/test/CodeGen/CellSPU/jumptable.ll index 87376ef6ed..66c2fdeb51 100644 --- a/test/CodeGen/CellSPU/jumptable.ll +++ b/test/CodeGen/CellSPU/jumptable.ll @@ -4,18 +4,18 @@ define i32 @test(i32 %param) { entry: ;CHECK: ai {{\$.}}, $3, -1 ;CHECK: clgti {{\$., \$.}}, 3 -;CHECK: brnz {{\$.}},.LBB0_2 - switch i32 %param, label %bb1 [ - i32 1, label %bb3 +;CHECK: brnz {{\$.}},.LBB0_ + switch i32 %param, label %bb2 [ + i32 1, label %bb1 i32 2, label %bb2 i32 3, label %bb3 - i32 4, label %bb1 + i32 4, label %bb2 ] - +;CHECK-NOT: # BB#2 bb1: ret i32 1 bb2: ret i32 2 bb3: - ret i32 3 + ret i32 %param } |