diff options
| author | Bill Wendling <isanbard@gmail.com> | 2011-09-19 22:16:15 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2011-09-19 22:16:15 +0000 |
| commit | 8bf0eab34d00f238567e977516f39bc7ef494307 (patch) | |
| tree | 84c0658b979a075585f0bb48f03cc3aa6e56e13b | |
| parent | e7b02b817069ceca4c4a76b28e283cfc21534d63 (diff) | |
| download | bcm5719-llvm-8bf0eab34d00f238567e977516f39bc7ef494307.tar.gz bcm5719-llvm-8bf0eab34d00f238567e977516f39bc7ef494307.zip | |
Replace uses of unwind with unreachable for the same effect.
llvm-svn: 140077
| -rw-r--r-- | llvm/test/Transforms/TailCallElim/reorder_load.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/TailCallElim/reorder_load.ll b/llvm/test/Transforms/TailCallElim/reorder_load.ll index 7f8af7ea147..7f5c36e4a20 100644 --- a/llvm/test/Transforms/TailCallElim/reorder_load.ll +++ b/llvm/test/Transforms/TailCallElim/reorder_load.ll @@ -43,7 +43,7 @@ else: ; preds = %entry br i1 %nullcheck, label %unwind, label %recurse unwind: ; preds = %else - unwind + unreachable recurse: ; preds = %else %tmp7 = add i32 %start_arg, 1 ; <i32> [#uses=1] @@ -89,7 +89,7 @@ else: ; preds = %entry br i1 %nullcheck, label %unwind, label %recurse unwind: ; preds = %else - unwind + unreachable recurse: ; preds = %else %tmp7 = add i32 %start_arg, 1 ; <i32> [#uses=1] |

