forked from OSchip/llvm-project
[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:
parent
f1bdf9fa9b
commit
d8c373815d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue