mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
3a1d9fe91a
most of the inliner test cases. The inliner involves a bunch of interesting code and tends to be where most of the issues I've seen experimenting with the new PM lie. All of these test cases pass, but I'd like to keep some more thorough coverage here so doing a fairly blanket enabling. There are a handful of interesting tests I've not enabled yet because they're focused on the always inliner, or on functionality that doesn't (yet) exist in the inliner. llvm-svn: 290592
41 lines
934 B
LLVM
41 lines
934 B
LLVM
; RUN: opt < %s -inline -S | FileCheck %s
|
|
; RUN: opt < %s -passes='cgscc(inline)' -S | FileCheck %s
|
|
; Do not inline calls with variable-sized alloca.
|
|
|
|
@q = common global i8* null
|
|
|
|
define i8* @a(i32 %i) nounwind {
|
|
; CHECK-LABEL: define i8* @a
|
|
entry:
|
|
%i_addr = alloca i32
|
|
%retval = alloca i8*
|
|
%p = alloca i8*
|
|
%"alloca point" = bitcast i32 0 to i32
|
|
store i32 %i, i32* %i_addr
|
|
%0 = load i32, i32* %i_addr, align 4
|
|
%1 = alloca i8, i32 %0
|
|
store i8* %1, i8** %p, align 4
|
|
%2 = load i8*, i8** %p, align 4
|
|
store i8* %2, i8** @q, align 4
|
|
br label %return
|
|
|
|
return:
|
|
%retval1 = load i8*, i8** %retval
|
|
ret i8* %retval1
|
|
}
|
|
|
|
define void @b(i32 %i) nounwind {
|
|
; CHECK-LABEL: define void @b
|
|
entry:
|
|
%i_addr = alloca i32
|
|
%"alloca point" = bitcast i32 0 to i32
|
|
store i32 %i, i32* %i_addr
|
|
%0 = load i32, i32* %i_addr, align 4
|
|
%1 = call i8* @a(i32 %0) nounwind
|
|
; CHECK: call i8* @a
|
|
br label %return
|
|
|
|
return:
|
|
ret void
|
|
}
|