diff options
author | Hans Wennborg <hans@hanshq.net> | 2012-11-07 18:38:24 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2012-11-07 18:38:24 +0000 |
commit | ab1b6c83adf459d78bee1e87e235f4fdf8d4d106 (patch) | |
tree | cfd56a3367d557c9b31e11b604eb5a32768036b0 | |
parent | 19a1fcf8683a2a459a8aac93c1b4d1bf63b018fb (diff) |
Fix bad test IR in switch_to_lookup_table.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167543 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/SimplifyCFG/switch_to_lookup_table.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/SimplifyCFG/switch_to_lookup_table.ll b/test/Transforms/SimplifyCFG/switch_to_lookup_table.ll index d358350554..0f5eb6a135 100644 --- a/test/Transforms/SimplifyCFG/switch_to_lookup_table.ll +++ b/test/Transforms/SimplifyCFG/switch_to_lookup_table.ll @@ -770,7 +770,7 @@ sw.bb3: br label %return sw.default: unreachable return: - %retval.0 = phi i32 [ 1, %sw.bb3 ], [ -1, %sw.bb2 ], [ 1, %sw.bb1 ], [ 0, %sw.bb ] + %retval.0 = phi i32 [ 1, %sw.bb3 ], [ -1, %sw.bb2 ], [ 0, %sw.bb ] ret i32 %retval.0 ; CHECK: @unreachable |