AArch64/ARM64: add another set of tests from AArch64
[oota-llvm.git] / test / CodeGen / AArch64 / inline-asm-constraints-badL.ll
1 ; RUN: not llc -mtriple=aarch64-none-linux-gnu < %s
2 ; RUN: not llc -mtriple=arm64-apple-ios7.0 -o - %s
3
4 define void @foo() {
5   ; 32-bit bitpattern ending in 1101 can't be produced.
6   call void asm sideeffect "and x0, x0, $0", "L"(i32 13)
7   ret void
8 }