mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-14 17:36:29 +00:00

It adds it for the target after inlining but before SROA where we can get most out of it. Differential Revision: https://reviews.llvm.org/D34366 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305759 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
277 B
LLVM
11 lines
277 B
LLVM
; RUN: opt -mtriple=amdgcn--amdhsa -disable-output -disable-verify -debug-pass=Structure -O2 %s 2>&1 | FileCheck -check-prefix=GCN %s
|
|
|
|
; GCN: Function Integration/Inlining
|
|
; GCN: FunctionPass Manager
|
|
; GCN: Infer address spaces
|
|
; GCN: SROA
|
|
|
|
define void @empty() {
|
|
ret void
|
|
}
|