[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / test / CodeGen / Mips / constraint-c-err.ll
blob94768f89e9924c2fe9c33c28dfcd265d2dcea286
1 ; Check that invalid type for constraint `c` causes an error message.
2 ; RUN: not llc -march=mips -target-abi o32 < %s 2>&1 | FileCheck %s
4 define i32 @main() #0 {
5 entry:
6   %jmp = alloca float, align 4
7   store float 0x4200000000000000, ptr %jmp, align 4
8   %0 = load float, ptr %jmp, align 4
9   call void asm sideeffect "jr $0", "c,~{$1}"(float %0) #1
11 ; CHECK: error: couldn't allocate input reg for constraint 'c'
13   ret i32 0
16 attributes #0 = { noinline nounwind }
17 attributes #1 = { nounwind }