blob: 2f1fceea5ea498d3d6d21dbf8d9062cb7727b647 [file] [log] [blame]
Dan Gohman0a063102009-09-08 23:54:48 +00001; RUN: llc < %s -march=x86-64 > %t
Dan Gohman5a5e6e92008-10-17 01:33:43 +00002; RUN: not grep add %t
3; RUN: grep subq %t | count 2
4
5; The immediate can be encoded in a smaller way if the
6; instruction is a sub instead of an add.
7
8define i64 @foo(i64 inreg %a) nounwind {
9 %b = add i64 %a, 2147483648
10 ret i64 %b
11}
12define i64 @bar(i64 inreg %a) nounwind {
13 %b = add i64 %a, 128
14 ret i64 %b
15}