blob: 56afbaaa9cd677af96c8bcde17f288d7fdba98a3 [file] [log] [blame]
Eric Christopher470578a2012-05-07 05:46:48 +00001;
2;This is a negative test. The constant value given for the constraint (O).
3;signed 15 bit immediate (+- 16383).
4;Our example uses the positive value 16384.
5;
6; RUN: not llc -march=mipsel < %s 2> %t
7; RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s
8
9define i32 @main() nounwind {
10entry:
11
12;CHECK-ERRORS: error: invalid operand for inline asm constraint 'O'
13
Daniel Sandersb2305952014-05-22 11:46:58 +000014 tail call i32 asm sideeffect "addiu $0,$1,$2", "=r,r,O"(i32 undef, i32 16384) nounwind
Eric Christopher470578a2012-05-07 05:46:48 +000015 ret i32 0
16}