From 63d7c17ff1d8da3d3975e2407314f1e4cf6ae90c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 5 Dec 2010 01:02:13 +0000 Subject: remove two tests that aren't really testing anything. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120926 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/select-zero-one.ll | 25 --------------- test/CodeGen/X86/select.ll | 63 ------------------------------------- 2 files changed, 88 deletions(-) delete mode 100644 test/CodeGen/X86/select-zero-one.ll delete mode 100644 test/CodeGen/X86/select.ll (limited to 'test') diff --git a/test/CodeGen/X86/select-zero-one.ll b/test/CodeGen/X86/select-zero-one.ll deleted file mode 100644 index c38a020..0000000 --- a/test/CodeGen/X86/select-zero-one.ll +++ /dev/null @@ -1,25 +0,0 @@ -; RUN: llc < %s -march=x86 -mattr=+sse2 | not grep cmov -; RUN: llc < %s -march=x86 -mattr=+sse2 | not grep xor -; RUN: llc < %s -march=x86 -mattr=+sse2 | grep movzbl | count 1 - -@r1 = weak global i32 0 - -define void @t1(i32 %a, double %b) { - %tmp114 = fcmp ugt double %b, 1.000000e-09 - %tmp120 = icmp eq i32 %a, 0 ; [#uses=1] - %bothcond = or i1 %tmp114, %tmp120 ; [#uses=1] - %storemerge = select i1 %bothcond, i32 0, i32 1 ; [#uses=2] - store i32 %storemerge, i32* @r1, align 4 - ret void -} - -@r2 = weak global i8 0 - -define void @t2(i32 %a, double %b) { - %tmp114 = fcmp ugt double %b, 1.000000e-09 - %tmp120 = icmp eq i32 %a, 0 ; [#uses=1] - %bothcond = or i1 %tmp114, %tmp120 ; [#uses=1] - %storemerge = select i1 %bothcond, i8 0, i8 1 ; [#uses=2] - store i8 %storemerge, i8* @r2, align 4 - ret void -} diff --git a/test/CodeGen/X86/select.ll b/test/CodeGen/X86/select.ll deleted file mode 100644 index 95ed9e9..0000000 --- a/test/CodeGen/X86/select.ll +++ /dev/null @@ -1,63 +0,0 @@ -; RUN: llc < %s -march=x86 -mcpu=pentium -; RUN: llc < %s -march=x86 -mcpu=yonah -; RUN: llc < %s -march=x86 -mcpu=yonah | not grep set - -define i1 @boolSel(i1 %A, i1 %B, i1 %C) nounwind { - %X = select i1 %A, i1 %B, i1 %C ; [#uses=1] - ret i1 %X -} - -define i8 @byteSel(i1 %A, i8 %B, i8 %C) nounwind { - %X = select i1 %A, i8 %B, i8 %C ; [#uses=1] - ret i8 %X -} - -define i16 @shortSel(i1 %A, i16 %B, i16 %C) nounwind { - %X = select i1 %A, i16 %B, i16 %C ; [#uses=1] - ret i16 %X -} - -define i32 @intSel(i1 %A, i32 %B, i32 %C) nounwind { - %X = select i1 %A, i32 %B, i32 %C ; [#uses=1] - ret i32 %X -} - -define i64 @longSel(i1 %A, i64 %B, i64 %C) nounwind { - %X = select i1 %A, i64 %B, i64 %C ; [#uses=1] - ret i64 %X -} - -define double @doubleSel(i1 %A, double %B, double %C) nounwind { - %X = select i1 %A, double %B, double %C ; [#uses=1] - ret double %X -} - -define i8 @foldSel(i1 %A, i8 %B, i8 %C) nounwind { - %Cond = icmp slt i8 %B, %C ; [#uses=1] - %X = select i1 %Cond, i8 %B, i8 %C ; [#uses=1] - ret i8 %X -} - -define i32 @foldSel2(i1 %A, i32 %B, i32 %C) nounwind { - %Cond = icmp eq i32 %B, %C ; [#uses=1] - %X = select i1 %Cond, i32 %B, i32 %C ; [#uses=1] - ret i32 %X -} - -define i32 @foldSel2a(i1 %A, i32 %B, i32 %C, double %X, double %Y) nounwind { - %Cond = fcmp olt double %X, %Y ; [#uses=1] - %X.upgrd.1 = select i1 %Cond, i32 %B, i32 %C ; [#uses=1] - ret i32 %X.upgrd.1 -} - -define float @foldSel3(i1 %A, float %B, float %C, i32 %X, i32 %Y) nounwind { - %Cond = icmp ult i32 %X, %Y ; [#uses=1] - %X.upgrd.2 = select i1 %Cond, float %B, float %C ; [#uses=1] - ret float %X.upgrd.2 -} - -define float @nofoldSel4(i1 %A, float %B, float %C, i32 %X, i32 %Y) nounwind { - %Cond = icmp slt i32 %X, %Y ; [#uses=1] - %X.upgrd.3 = select i1 %Cond, float %B, float %C ; [#uses=1] - ret float %X.upgrd.3 -} -- cgit v1.1