Shrink Thumb2 movcc instructions.
[llvm/avr.git] / test / CodeGen / X86 / add-trick32.ll
blob42909b4b5874a3abe03ad1146ac5505e71786ee4
1 ; RUN: llvm-as < %s | llc -march=x86 > %t
2 ; RUN: not grep add %t
3 ; RUN: grep subl %t | count 1
5 ; The immediate can be encoded in a smaller way if the
6 ; instruction is a sub instead of an add.
8 define i32 @foo(i32 inreg %a) nounwind {
9   %b = add i32 %a, 128
10   ret i32 %b