[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / Mips / inlineasm-constraint-bad-N.ll
blobeaa540acdafabcedee32396fd44d75df1d9605c0
1  
2 ;This is a negative test. The constant value given for the constraint (N).
3 ;immediate in the range of -65535 to -1 (inclusive).
4 ;Our example uses the positive value 3.
6 ; RUN: not llc -march=mipsel < %s  2> %t
7 ; RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s
9 define i32 @main() nounwind {
10 entry:
12 ;CHECK-ERRORS:  error: invalid operand for inline asm constraint 'N'
14   tail call i32 asm sideeffect "addiu $0,$1,$2", "=r,r,N"(i32 7, i32 3) nounwind
15   ret i32 0