blob: 0a645d3cac05ac3aa6e770be29234e363e54e7a1 [file] [log] [blame]
Evan Cheng02b985c2007-01-19 09:20:23 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm &&
2; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | not grep CPI
3
4int %test1(int %A) {
5 %B = add int %A, -268435441 ; 0xF000000F
6 ret int %B
7}
8
9int %test2() {
10 ret int 65533
11}
12
13int %test3(int %A) {
14 %B = or int %A, 65533
15 ret int %B
16}
17
18