mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
8e4adad70b
alloca-dbgdeclare-merge.ll: alloca-merge-align.ll: array_merge.ll: NPM inliner does not merge allocas delete-call.ll: NPM inliner does not delete readonly calls externally_available.ll: NPM inliner does not delete available_externally functions inline-cold-callee.ll: inline-hot-callee.ll: inline-hot-callee.ll has a comment saying it only applies to legacy PM, I assume same for inline-cold-callee.ll devirtualize-2.ll: inline-hot-callsite: monster_scc.ll: pr22285.ll: already has legacy and new PM RUN lines inline-cold.ll: profile-summary required to see callee as cold prof-update-sample.ll: profile-summary required to update branch_weights Reviewed By: davidxl Differential Revision: https://reviews.llvm.org/D89093
27 lines
707 B
LLVM
27 lines
707 B
LLVM
; RUN: opt < %s -inline -S -enable-new-pm=0 | FileCheck %s
|
|
; rdar://7173846
|
|
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
|
|
target triple = "i386-apple-darwin10.0"
|
|
|
|
define internal void @foo() nounwind ssp {
|
|
entry:
|
|
%A = alloca [100 x i32]
|
|
%B = alloca [100 x i32]
|
|
call void @bar([100 x i32]* %A, [100 x i32]* %B) nounwind
|
|
ret void
|
|
}
|
|
|
|
declare void @bar([100 x i32]*, [100 x i32]*)
|
|
|
|
define void @test() nounwind ssp {
|
|
entry:
|
|
; CHECK: @test()
|
|
; CHECK-NEXT: entry:
|
|
; CHECK-NEXT: %A.i = alloca
|
|
; CHECK-NEXT: %B.i = alloca
|
|
; CHECK-NOT: alloca
|
|
call void @foo() nounwind
|
|
call void @foo() nounwind
|
|
ret void
|
|
}
|