diff --git a/mlir/examples/standalone/standalone-opt/standalone-opt.cpp b/mlir/examples/standalone/standalone-opt/standalone-opt.cpp --- a/mlir/examples/standalone/standalone-opt/standalone-opt.cpp +++ b/mlir/examples/standalone/standalone-opt/standalone-opt.cpp @@ -33,6 +33,6 @@ // will be *parsed* by the tool, not the one generated // registerAllDialects(registry); - return failed( + return mlir::asMainReturnCode( mlir::MlirOptMain(argc, argv, "Standalone optimizer driver\n", registry)); } diff --git a/mlir/include/mlir/Support/MlirOptMain.h b/mlir/include/mlir/Support/MlirOptMain.h --- a/mlir/include/mlir/Support/MlirOptMain.h +++ b/mlir/include/mlir/Support/MlirOptMain.h @@ -16,6 +16,7 @@ #include "mlir/Support/LogicalResult.h" #include "llvm/ADT/StringRef.h" +#include #include namespace llvm { @@ -61,6 +62,20 @@ DialectRegistry ®istry, bool preloadDialectsInContext = false); +/// Helper wrapper to return the result of MlirOptMain directly from main. +/// +/// Example: +/// +/// int main(int argc, char **argv) { +/// // ... +/// return mlir::asMainReturnCode(mlir::MlirOptMain( +/// argc, argv, /* ... */); +/// } +/// +inline int asMainReturnCode(LogicalResult r) { + return r.succeeded() ? EXIT_SUCCESS : EXIT_FAILURE; +} + } // end namespace mlir #endif // MLIR_SUPPORT_MLIROPTMAIN_H diff --git a/mlir/tools/mlir-opt/mlir-opt.cpp b/mlir/tools/mlir-opt/mlir-opt.cpp --- a/mlir/tools/mlir-opt/mlir-opt.cpp +++ b/mlir/tools/mlir-opt/mlir-opt.cpp @@ -190,7 +190,7 @@ #ifdef MLIR_INCLUDE_TESTS test::registerTestDialect(registry); #endif - return failed(MlirOptMain(argc, argv, "MLIR modular optimizer driver\n", - registry, - /*preloadDialectsInContext=*/false)); + return mlir::asMainReturnCode( + mlir::MlirOptMain(argc, argv, "MLIR modular optimizer driver\n", registry, + /*preloadDialectsInContext=*/false)); }