blob: 3b078d6f70dbbd221d21d454b7f4ea5cfbed76bc [file] [log] [blame]
Eric Christopher1d6c89e2012-05-07 03:13:32 +00001;
2; Register constraint "r" shouldn't take long long unless
3; The target is 64 bit.
4;
5;
Vladimir Medic187958b2015-02-26 12:29:48 +00006; RUN: llc -march=mips64el -mcpu=mips64r2 -target-abi=n64 < %s | FileCheck %s
Eric Christopher1d6c89e2012-05-07 03:13:32 +00007
8
9define i32 @main() nounwind {
10entry:
11
12
13; r with long long
14;CHECK: #APP
Daniel Sanders00a4aac2015-11-16 14:14:59 +000015;CHECK: addiu ${{[0-9]+}}, ${{[0-9]+}}, 3
Eric Christopher1d6c89e2012-05-07 03:13:32 +000016;CHECK: #NO_APP
Daniel Sanders00a4aac2015-11-16 14:14:59 +000017 tail call i64 asm sideeffect "addiu $0, $1, $2", "=r,r,i"(i64 7, i64 3) nounwind
Eric Christopher1d6c89e2012-05-07 03:13:32 +000018 ret i32 0
19}
20