Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / inline-asm-bad-constraint-n.ll
blobd27a74620013bbd3715471fe3f6d3b83c459de27
1 ; RUN: not llc -mtriple=i686-- -no-integrated-as < %s 2>&1 | FileCheck %s
3 @x = global i32 0, align 4
5 ; CHECK: error: constraint 'n' expects an integer constant expression
6 define void @foo() {
7   %a = getelementptr i32, ptr @x, i32 1
8   call void asm sideeffect "foo $0", "n"(ptr %a) nounwind
9   ret void
12 ; CHECK: error: invalid operand for inline asm constraint 'i'
13 define void @bar(i32 %v) {
14   call void asm "", "in"(i32 %v)
15   ret void