mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 14:47:00 +00:00
a9d6f4a14a
This also fixes a bug where negative immediates below -128 were not being reported as errors. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249989 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
389 B
LLVM
21 lines
389 B
LLVM
; RUN: llc < %s -march=x86 | FileCheck %s
|
|
; RUN: llc < %s -march=x86-64 | FileCheck %s
|
|
|
|
declare void @llvm.x86.int(i8) nounwind
|
|
|
|
; CHECK: int3
|
|
; CHECK: ret
|
|
define void @primitive_int3 () {
|
|
bb.entry:
|
|
call void @llvm.x86.int(i8 3) nounwind
|
|
ret void
|
|
}
|
|
|
|
; CHECK: int $128
|
|
; CHECK: ret
|
|
define void @primitive_int128 () {
|
|
bb.entry:
|
|
call void @llvm.x86.int(i8 128) nounwind
|
|
ret void
|
|
}
|