TargetLibraryInfo: Use pointer index size to determine getSizeTSize(). (#118747)
[llvm-project.git] / mlir / test / Pass / invalid-pass.mlir
blob649f723aa8f72283b5b93a81b024a14d28f4961f
1 // RUN: not mlir-opt %s -pass-pipeline='builtin.module(builtin.module(test-module-pass{test-option=a}))' 2>&1 | FileCheck %s
2 // RUN: not mlir-opt %s -mlir-print-ir-module-scope -mlir-print-ir-before=cse 2>&1 | FileCheck -check-prefix=PRINT_MODULE_IR_WITH_MULTITHREAD %s
4 // CHECK: <Pass-Options-Parser>: no such option test-option
5 // CHECK: failed to add `test-module-pass` with options `test-option=a`
6 // CHECK: failed to add `builtin.module` with options `` to inner pipeline
7 module {}
9 // PRINT_MODULE_IR_WITH_MULTITHREAD: IR print for module scope can't be setup on a pass-manager without disabling multi-threading first.