xref: /llvm-project/mlir/test/mlir-translate/export-timing.mlir (revision c3b4e279d465f6489c4af43637cf125e86859097)
1// RUN: mlir-translate %s --mlir-to-llvmir -mlir-timing 2>&1 | FileCheck %s
2
3// CHECK: Execution time report
4// CHECK: Total Execution Time:
5// CHECK: Name
6// CHECK-NEXT: Translate MLIR to LLVMIR
7
8llvm.func @foo() {
9  llvm.return
10}
11