diff options
author | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-10-12 09:01:26 +0000 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-10-12 09:01:26 +0000 |
commit | d75d267367d718e92ae334423665a854b85283f0 (patch) | |
tree | 7a2ccbd43f5ec4703d8e6ce378d704e1084a8854 /test/Transforms | |
parent | 2a4bea52626f43600234dd3032c3207167ee5758 (diff) | |
download | external_llvm-d75d267367d718e92ae334423665a854b85283f0.zip external_llvm-d75d267367d718e92ae334423665a854b85283f0.tar.gz external_llvm-d75d267367d718e92ae334423665a854b85283f0.tar.bz2 |
Missing CHECK: lines makes test exit abnormally.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83835 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r-- | test/Transforms/InstCombine/call.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/call.ll b/test/Transforms/InstCombine/call.ll index 99ec5a5..1e37eec 100644 --- a/test/Transforms/InstCombine/call.ll +++ b/test/Transforms/InstCombine/call.ll @@ -53,8 +53,8 @@ define i32 @test4() { %X = call i32 bitcast (i8 ()* @test4a to i32 ()*)( ) ; <i32> [#uses=1] ret i32 %X ; CHECK: %X1 = call i8 @test4a() -%tmp = zext i8 %X1 to i32 -ret i32 %tmp +; CHECK: %tmp = zext i8 %X1 to i32 +; CHECK: ret i32 %tmp } |