Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / Other / statistic.ll
blob72e2e5f5f47a5416ee8bf0cf57439eb17c9659a7
1 ; RUN: opt < %s -o /dev/null -p=instsimplify -stats -stats-json 2>&1 | FileCheck %s --check-prefix=JSON
2 ; RUN: opt < %s -o /dev/null -p=instsimplify -stats -stats-json -info-output-file %t && FileCheck %s < %t --check-prefix=JSON
3 ; RUN: opt < %s -o /dev/null -p=instsimplify -stats 2>&1 | FileCheck %s --check-prefix=DEFAULT
4 ; RUN: opt < %s -o /dev/null -p=instsimplify -stats -info-output-file %t && FileCheck %s < %t --check-prefix=DEFAULT
5 ; REQUIRES: asserts
7 ; JSON: {
8 ; JSON-DAG:   "instsimplify.NumSimplified": 1
9 ; JSON: }
11 ; DEFAULT: 1 instsimplify - Number of redundant instructions removed
13 define i32 @foo() {
14   %res = add i32 5, 4
15   ret i32 %res