bolt/deps/llvm-18.1.8/llvm/test/CodeGen/AArch64/inline-asm-constraints-badI.ll
2025-02-14 19:21:04 +01:00

7 lines
183 B
LLVM

; RUN: not llc -mtriple=aarch64-none-linux-gnu -o - %s
define void @foo() {
; Out of range immediate for I.
call void asm sideeffect "add x0, x0, $0", "I"(i32 4097)
ret void
}