[mlir][NFC] Add missing include guards to MlirOptMain.h

Reviewed By: mehdi_amini

Differential Revision: https://reviews.llvm.org/D95533
This commit is contained in:
Vladislav Vinogradov 2021-02-02 18:26:05 +00:00 committed by Mehdi Amini
parent f1bdf9fa9b
commit d8c373815d
1 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,9 @@
//
//===----------------------------------------------------------------------===//
#ifndef MLIR_SUPPORT_MLIROPTMAIN_H
#define MLIR_SUPPORT_MLIROPTMAIN_H
#include "mlir/Support/LogicalResult.h"
#include "llvm/ADT/StringRef.h"
@ -59,3 +62,5 @@ LogicalResult MlirOptMain(int argc, char **argv, llvm::StringRef toolName,
bool preloadDialectsInContext = true);
} // end namespace mlir
#endif // MLIR_SUPPORT_MLIROPTMAIN_H