[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Other / 2010-05-06-Printer.ll
blob9e7c9cb6ab4a8d7ce5042567588bcaddc934abdf
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-NOT: IR Dump After {{.*}}; ModuleID =
14 ;ALL: define void @tester()
15 ;ALL: define void @foo()
16 ;ALL: ModuleID =
18 ;FOO: IR Dump After
19 ;FOO-EMPTY:
20 ;FOO-NEXT: define void @foo()
21 ;FOO-NOT: define void @tester