In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / CodeGen / XCore / addsub64.ll
blob41224fca1cc25196be37849e825e0678cc4d5cc8
1 ; RUN: llvm-as < %s | llc -march=xcore -mcpu=xs1b-generic > %t1.s
2 ; RUN: grep ladd %t1.s | count 2
3 ; RUN: grep lsub %t1.s | count 2
4 define i64 @add64(i64 %a, i64 %b) {
5         %result = add i64 %a, %b
6         ret i64 %result
9 define i64 @sub64(i64 %a, i64 %b) {
10         %result = sub i64 %a, %b
11         ret i64 %result