Remove VISIBILITY_HIDDEN from this file.
[llvm/avr.git] / test / CodeGen / X86 / add-trick64.ll
blob5466d9d441b164eb949ad252f884ef31381029d8
1 ; RUN: llvm-as < %s | llc -march=x86-64 > %t
2 ; RUN: not grep add %t
3 ; RUN: grep subq %t | count 2
5 ; The immediate can be encoded in a smaller way if the
6 ; instruction is a sub instead of an add.
8 define i64 @foo(i64 inreg %a) nounwind {
9   %b = add i64 %a, 2147483648
10   ret i64 %b
12 define i64 @bar(i64 inreg %a) nounwind {
13   %b = add i64 %a, 128
14   ret i64 %b