blob: 4c5c97bbb61afa3aacc05720c68e31cbd6a925a4 [file] [log] [blame]
Chris Lattner78da4f02003-05-11 22:46:23 +00001
2implementation
3
4bool %test(int *%X, uint* %Y) {
5 %A = cast int* %X to sbyte*
6 %B = cast uint* %Y to sbyte*
7 %c1 = seteq sbyte* %A, null
8 %c2 = seteq sbyte* %B, null
9 %c = and bool %c1, %c2
10 ret bool %c
11}