repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bump version to 19.1.0-rc3
[llvm-project.git]
/
llvm
/
test
/
Feature
/
OperandBundles
/
inliner-conservative.ll
blob
21694141cf8d17989a46636a543177dd6a810d00
1
; RUN: opt -S -passes='cgscc(inline)' < %s | FileCheck %s
2
3
; Check that the inliner does not inline through arbitrary unknown
4
; operand bundles.
5
6
define i32 @callee() {
7
entry:
8
ret i32 2
9
}
10
11
define i32 @caller() {
12
; CHECK: @caller(
13
entry:
14
; CHECK: call i32 @callee() [ "unknown"() ]
15
%x = call i32 @callee() [ "unknown"() ]
16
ret i32 %x
17
}