You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
517 B
21 lines
517 B
; RUN: llc -O2 -print-after-all < %s 2>/dev/null
|
|
; RUN: llc -O2 -print-after-all < %s 2>&1 | FileCheck %s --check-prefix=ALL
|
|
; RUN: llc -O2 -print-after-all -filter-print-funcs=foo < %s 2>&1 | FileCheck %s --check-prefix=FOO
|
|
; REQUIRES: default_triple
|
|
define void @tester(){
|
|
ret void
|
|
}
|
|
|
|
define void @foo(){
|
|
ret void
|
|
}
|
|
|
|
;ALL-NOT: IR Dump After {{.*}}; ModuleID =
|
|
;ALL: define void @tester()
|
|
;ALL: define void @foo()
|
|
;ALL: ModuleID =
|
|
|
|
;FOO: IR Dump After
|
|
;FOO-NEXT: define void @foo()
|
|
;FOO-NOT: define void @tester
|