[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / test / CodeGen / Mips / inlineasm-constraint-bad-P.ll
blob0a55cb55e5f23eb2bd093c2916d7bfd25efb684a
2 ; This is a negative test. The constant value given for the constraint (P).
3 ; A constant in the range of 1 to 655535 inclusive.
4 ; Our example uses the positive value 655536.
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 'P'
14   tail call i32 asm sideeffect "addiu $0,$1,$2", "=r,r,P"(i32 undef, i32 655536) nounwind
15   ret i32 0