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

llvm-svn: 19554
This commit is contained in:
Chris Lattner 2005-01-14 19:30:42 +00:00
parent 708ff662ba
commit e846b58c2a

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
}