mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-20 19:20:23 +00:00
1a8adcb569
Another batch with no code changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206381 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
233 B
LLVM
9 lines
233 B
LLVM
; RUN: not llc -mtriple=aarch64-none-linux-gnu < %s
|
|
; RUN: not llc -mtriple=arm64-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
|
|
}
|