xref: /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/AArch64/inline-asm-constraints-badI.ll (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1; RUN: not llc -mtriple=aarch64-none-linux-gnu -o - %s
2
3define void @foo() {
4  ; Out of range immediate for I.
5  call void asm sideeffect "add x0, x0, $0", "I"(i32 4097)
6  ret void
7}
8