summaryrefslogtreecommitdiffstats
path: root/llvm/test/Other/module-pass-printer.ll
blob: 9c16cf10a2ef55d7c8d1f6ee39eb00b571be5923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; Check pass name is only printed once.
; RUN: opt < %s 2>&1 -forceattrs -disable-output -print-after-all | FileCheck %s
; RUN: opt < %s 2>&1 -forceattrs -disable-output -print-after-all -filter-print-funcs=foo,bar | FileCheck %s

; Check pass name is not printed if a module doesn't include any function specified in -filter-print-funcs.
; RUN: opt < %s 2>&1 -forceattrs -disable-output -print-after-all -filter-print-funcs=baz | FileCheck %s -allow-empty -check-prefix=EMPTY

; CHECK: *** IR Dump After Force set function attributes ***
; CHECK-NOT: *** IR Dump After Force set function attributes ***
; EMPTY-NOT: *** IR Dump After Force set function attributes ***

define void @foo() {
  ret void
}

define void @bar() {
  ret void
}
OpenPOWER on IntegriCloud