Testcase that crashes the PPC backend. Thanks to Rob for finding this.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19554 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-01-14 19:30:42 +00:00
parent 906ab50acf
commit 557671951f

View File

@ -0,0 +1,8 @@
; RUN: llvm-as < %s | llc -march=ppc32
int %main() {
%setle = setle long 1, 0
%select = select bool true, bool %setle, bool true
ret int 0
}