From 76806b6a434ad5477727d3733d18fe309a1281fe Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Sun, 9 Mar 2008 08:16:40 +0000 Subject: Remove llvm-upgrade and update tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48103 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/and-compare.ll | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/Transforms/InstCombine/and-compare.ll') diff --git a/test/Transforms/InstCombine/and-compare.ll b/test/Transforms/InstCombine/and-compare.ll index 8969f98fc1..d2f2753f88 100644 --- a/test/Transforms/InstCombine/and-compare.ll +++ b/test/Transforms/InstCombine/and-compare.ll @@ -1,11 +1,11 @@ -; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \ +; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \ ; RUN: grep and | count 1 ; Should be optimized to one and. -bool %test1(uint %a, uint %b) { - %tmp1 = and uint %a, 65280 - %tmp3 = and uint %b, 65280 - %tmp = setne uint %tmp1, %tmp3 - ret bool %tmp +define i1 @test1(i32 %a, i32 %b) { + %tmp1 = and i32 %a, 65280 ; [#uses=1] + %tmp3 = and i32 %b, 65280 ; [#uses=1] + %tmp = icmp ne i32 %tmp1, %tmp3 ; [#uses=1] + ret i1 %tmp } -- cgit v1.2.3