diff options
author | Dan Gohman <gohman@apple.com> | 2010-01-05 17:55:26 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-01-05 17:55:26 +0000 |
commit | aceba31b7a04fd28680209b2677915378877bc13 (patch) | |
tree | 14ccb6bb44f8ffb397c928e23771b50c43688ea4 /test/Transforms/TailCallElim | |
parent | ba25f0924ef3be887fb67ed6a66f3dee77461f44 (diff) |
Delete useless trailing semicolons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92740 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/TailCallElim')
-rw-r--r-- | test/Transforms/TailCallElim/dont_reorder_load.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/TailCallElim/dont_reorder_load.ll b/test/Transforms/TailCallElim/dont_reorder_load.ll index 7b3b232646..cc273c3ca5 100644 --- a/test/Transforms/TailCallElim/dont_reorder_load.ll +++ b/test/Transforms/TailCallElim/dont_reorder_load.ll @@ -34,8 +34,8 @@ entry: br i1 %tmp2, label %if, label %else if: ; preds = %entry - store i32 1, i32* %a_arg; - ret i32 0; + store i32 1, i32* %a_arg + ret i32 0 else: ; preds = %entry %tmp7 = add i32 %start_arg, 1 ; <i32> [#uses=1] @@ -53,7 +53,7 @@ entry: br i1 %tmp2, label %if, label %else if: ; preds = %entry - ret i32 0; + ret i32 0 else: ; preds = %entry %tmp7 = add i32 %start_arg, 1 ; <i32> [#uses=1] |