projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Let SelectionDAG start to use probability-based interface to add successors.
[oota-llvm.git]
/
test
/
CodeGen
/
ARM
/
dbg.ll
1
; RUN: llc -mtriple armv8-eabi -mcpu=cortex-a57 -o - %s | FileCheck %s
2
; RUN: llc -mtriple thumbv8-eabi -mcpu=cortex-a57 -o - %s | FileCheck %s
3
4
define void @hint_dbg() {
5
entry:
6
call void @llvm.arm.dbg(i32 0)
7
ret void
8
}
9
10
declare void @llvm.arm.dbg(i32)
11
12
; CHECK: dbg #0
13