Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / RISCV / inline-asm-s-constraint-error.ll
blobf836dd63662292e5774a9fe686cd7bdd2cf1a410
1 ; RUN: not llc -mtriple=riscv64 < %s 2>&1 | FileCheck %s
3 @a = external global [4 x i32], align 16
5 ; CHECK-COUNT-2: error: invalid operand for inline asm constraint 's'
6 ; CHECK-NOT:     error:
7 define void @test(i64 %i) {
8 entry:
9   %x = alloca i32, align 4
10   %ai = getelementptr inbounds [4 x i32], ptr @a, i64 0, i64 %i
11   call void asm sideeffect "", "s,~{dirflag},~{fpsr},~{flags}"(ptr %x)
12   call void asm sideeffect "", "s,~{dirflag},~{fpsr},~{flags}"(ptr %ai)
13   ret void