gn build: Merge r374476
[llvm-complete.git] / test / Feature / OperandBundles / inliner-conservative.ll
blobd9f09f71d905a36d33c5d280f05fb2755a0aa03b
1 ; RUN: opt -S -inline < %s | FileCheck %s
3 ; Check that the inliner does not inline through arbitrary unknown
4 ; operand bundles.
6 define i32 @callee() {
7  entry:
8   ret i32 2
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