xref: /llvm-project/llvm/test/CodeGen/AArch64/inline-asm-constraints-badK.ll (revision cc08e1fe1b3feef12a1eba31f8afcc3bbefc733e)
1; RUN: not llc -mtriple=arm64-apple-ios7.0 -o - %s
2
3define void @foo() {
4  ; 32-bit bitpattern ending in 1101 can't be produced.
5  call void asm sideeffect "and w0, w0, $0", "K"(i32 13)
6  ret void
7}
8