221
|
1 ; RUN: opt -mtriple=amdgcn--amdhsa -disable-output -disable-verify -debug-pass=Structure -O2 %s -enable-new-pm=0 2>&1 | FileCheck -check-prefix=LPM %s
|
|
2 ; RUN: opt -mtriple=amdgcn--amdhsa -disable-output -disable-verify -debug-pass-manager -passes='default<O2>' %s 2>&1 | FileCheck -check-prefix=NPM %s
|
150
|
3
|
221
|
4 ; LPM: Function Integration/Inlining
|
|
5 ; LPM: FunctionPass Manager
|
|
6 ; LPM: Infer address spaces
|
|
7 ; LPM: SROA
|
|
8
|
|
9 ; NPM: Running pass: InlinerPass
|
|
10 ; NPM: Running pass: InferAddressSpacesPass
|
|
11 ; NPM: Running pass: SROA
|
150
|
12
|
|
13 define void @empty() {
|
|
14 ret void
|
|
15 }
|