Add the testcase from PR8

llvm-svn: 9669
This commit is contained in:
Chris Lattner 2003-11-03 03:52:34 +00:00
parent c75cfac56d
commit efde768bf5
1 changed files with 6 additions and 0 deletions

View File

@ -47,3 +47,9 @@ bool %test6(bool %A) {
%C = setne int %B, 0
ret bool %C
}
bool %test7(sbyte* %A) {
%B = cast sbyte* %A to int*
%C = seteq int* %B, null
ret bool %C
}