summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/int-intrinsic.ll
blob: 45a9b0f15c674d1a57c441452568533070600cd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; 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
}