llvm-project
18 строк · 457.0 Байт
1; RUN: llc -O2 -print-after-all < %s 2>/dev/null
2; RUN: llc -O2 -print-after-all < %s 2>&1 | FileCheck %s --check-prefix=ALL
3; RUN: llc -O2 -print-after-all -filter-print-funcs=foo < %s 2>&1 | FileCheck %s --check-prefix=FOO
4; REQUIRES: default_triple
5define void @tester(){
6ret void
7}
8
9define void @foo(){
10ret void
11}
12
13;ALL: define void @tester()
14;ALL: define void @foo()
15
16;FOO: IR Dump After
17;FOO-NEXT: define void @foo()
18;FOO-NOT: define void @tester
19