[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Other / 2010-05-06-Printer.ll
blobfd73791d475ede0d71a2851d99147c19f9a78003
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
5 define void @tester(){
6   ret void
9 define void @foo(){
10   ret void
13 ;ALL: define void @tester()
14 ;ALL: define void @foo()
16 ;FOO: IR Dump After
17 ;FOO-NEXT: define void @foo()
18 ;FOO-NOT: define void @tester