summaryrefslogtreecommitdiffstats
path: root/llvm/test/Other/scc-deleted-printer.ll
blob: f7b97c3d30eb1f2f335c43ee1fe3937e4d0a2f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
; RUN: opt < %s 2>&1 -disable-output \
; RUN: 	   -passes=inline -print-before-all -print-after-all | FileCheck %s -check-prefix=INL
; RUN: opt < %s 2>&1 -disable-output \
; RUN: 	   -passes=inline -print-before-all -print-after-all -print-module-scope | FileCheck %s -check-prefix=INL-MOD

; INL: IR Dump Before {{InlinerPass .*scc: .tester, foo}}
; INL-NOT: IR Dump After {{InlinerPass}}
; INL: IR Dump Before {{InlinerPass .*scc: .tester}}
; INL: IR Dump After {{InlinerPass .*scc: .tester}}

; INL-MOD: IR Dump Before {{InlinerPass .*scc: .tester, foo}}
; INL-MOD: IR Dump After {{InlinerPass .*invalidated: .*scc: .tester, foo}}
; INL-MOD: IR Dump Before {{InlinerPass .*scc: .tester}}
; INL-MOD: IR Dump After {{InlinerPass .*scc: .tester}}


define void @tester() noinline {
  call void @foo()
  ret void
}

define internal void @foo() alwaysinline {
  call void @tester()
  ret void
}
OpenPOWER on IntegriCloud