From 1c591f74c7317216ef24c7a30ba19978ebac0f41 Mon Sep 17 00:00:00 2001 From: Edward O'Callaghan Date: Mon, 12 Oct 2009 09:01:26 +0000 Subject: [PATCH] Missing CHECK: lines makes test exit abnormally. llvm-svn: 83835 --- llvm/test/Transforms/InstCombine/call.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/Transforms/InstCombine/call.ll b/llvm/test/Transforms/InstCombine/call.ll index 99ec5a588caf..1e37eec7e94c 100644 --- a/llvm/test/Transforms/InstCombine/call.ll +++ b/llvm/test/Transforms/InstCombine/call.ll @@ -53,8 +53,8 @@ define i32 @test4() { %X = call i32 bitcast (i8 ()* @test4a to 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 }