1 ; RUN: llc -debug-only=isel-dump -filter-print-funcs=foo < %s 2>&1 | FileCheck %s --check-prefix=FOO
2 ; RUN: llc -debug-only=isel-dump -filter-print-funcs=bar < %s 2>&1 | FileCheck %s --check-prefix=BAR
3 ; RUN: llc -debug-only=isel-dump -filter-print-funcs=foo,zap < %s 2>&1 | FileCheck %s --check-prefixes=FOO,ZAP
4 ; Make sure the original -debug-only=isel still works.
5 ; RUN: llc -debug-only=isel < %s 2>&1 | FileCheck %s --check-prefixes=FOO,BAR,ZAP
11 ; FOO: # Machine code for function foo
12 define i32 @foo(i32 %a, i32 %b) {
20 ; BAR: # Machine code for function bar
21 define i32 @bar(i32 %a, i32 %b) {
29 ; ZAP: # Machine code for function zap
30 define i32 @zap(i32 %a, i32 %b) {