New test case.

llvm-svn: 30179
This commit is contained in:
Evan Cheng 2006-09-08 07:24:20 +00:00
parent 7348403d42
commit 8a29d206c2
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
; RUN: llvm-as < %s | llc -march=x86
; RUN: llvm-as < %s | llc -march=x86 | grep test
int %test(int %X, int* %y) {
%tmp = load int* %y
%tmp = seteq int %tmp, 0
br bool %tmp, label %ReturnBlock, label %cond_true
cond_true:
ret int 1
ReturnBlock:
ret int 0
}