mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
b9b521e21e
Summary: This change teaches the LLVM inliner to not inline through callsites with unknown operand bundles. Currently all operand bundles are "unknown" operand bundles but in the near future we will add support for inlining through some select kinds of operand bundles. Reviewers: reames, chandlerc, majnemer Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D14001 llvm-svn: 251141
18 lines
326 B
LLVM
18 lines
326 B
LLVM
; RUN: opt -S -inline < %s | FileCheck %s
|
|
|
|
; Check that the inliner does not inline through arbitrary unknown
|
|
; operand bundles.
|
|
|
|
define i32 @callee() {
|
|
entry:
|
|
ret i32 2
|
|
}
|
|
|
|
define i32 @caller() {
|
|
; CHECK: @caller(
|
|
entry:
|
|
; CHECK: call i32 @callee() [ "unknown"() ]
|
|
%x = call i32 @callee() [ "unknown"() ]
|
|
ret i32 %x
|
|
}
|