diff options
author | Dan Gohman <gohman@apple.com> | 2010-03-01 17:53:15 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-03-01 17:53:15 +0000 |
commit | 3a9fd8064ad19458e41e7bd55728f7a4bad95e6b (patch) | |
tree | 74424d497bc4d4a397c0ba21d46ecf692c76b152 | |
parent | c11e29a883aefd81c3858a130240b05e4c4603b1 (diff) |
LLVM instruction syntax doesn't have trailing semicolons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97456 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/InstCombine/objsize.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/Transforms/InstCombine/objsize.ll b/test/Transforms/InstCombine/objsize.ll index 43406621b8..9df122499e 100644 --- a/test/Transforms/InstCombine/objsize.ll +++ b/test/Transforms/InstCombine/objsize.ll @@ -23,12 +23,12 @@ entry: br i1 %cmp, label %cond.true, label %cond.false cond.true: - %1 = load i8** %retval; - ret i8* %1; + %1 = load i8** %retval + ret i8* %1 cond.false: - %2 = load i8** %retval; - ret i8* %2; + %2 = load i8** %retval + ret i8* %2 } define i32 @f() nounwind { @@ -64,7 +64,7 @@ entry: } @.str5 = private constant [9 x i32] [i32 97, i32 98, i32 99, i32 100, i32 0, i32 - 101, i32 102, i32 103, i32 0], align 4 ; + 101, i32 102, i32 103, i32 0], align 4 define i32 @test2() nounwind { ; CHECK: @test2 ; CHECK-NEXT: ret i32 34 |