[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / CodeGen / Mips / inlineasm-constraint-reg64.ll
blob3b078d6f70dbbd221d21d454b7f4ea5cfbed76bc
2 ; Register constraint "r" shouldn't take long long unless
3 ; The target is 64 bit.
6 ; RUN: llc -march=mips64el -mcpu=mips64r2 -target-abi=n64 < %s | FileCheck %s
9 define i32 @main() nounwind {
10 entry:
13 ; r with long long
14 ;CHECK: #APP
15 ;CHECK: addiu ${{[0-9]+}}, ${{[0-9]+}}, 3
16 ;CHECK: #NO_APP
17   tail call i64 asm sideeffect "addiu $0, $1, $2", "=r,r,i"(i64 7, i64 3) nounwind
18   ret i32 0