llvm-6502/test/CodeGen/X86/int-intrinsic.ll

21 lines
390 B
LLVM
Raw Normal View History

; 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
}