blob: 3d5d08303ada46ad53c756d7e359975d5629c62f [file] [log] [blame]
Chris Lattnerdd43c862005-08-30 18:44:09 +00001; RUN: llvm-as < %s | llc -march=ppc32 | not grep 'ori\|lis'
2; XFAIL: *
3
4int %test(int %X) {
5 %Y = and int %X, 32769 ; andi. r3, r3, 32769
6 ret int %Y
7}
8
9int %test2(int %X) {
10 %Y = and int %X, -2147418112 ; andis. r3, r3, 32769
11 ret int %Y
12}
13