forked from OSchip/llvm-project
Fix incorrect names due to merging of tblgen tools.
PiperOrigin-RevId: 227131485
This commit is contained in:
parent
d798f9bad5
commit
f845bc4542
|
@ -115,7 +115,7 @@ class DerivedAttr<code ReturnType, code Body> : Attr<DerivedAttrBody> {
|
|||
class OpProperty;
|
||||
|
||||
//
|
||||
// Note: These are hard coded into mlir-op-gen.
|
||||
// Note: These are hard coded into mlir-tblgen.
|
||||
//
|
||||
def Commutative : OpProperty; // X op Y == Y op X
|
||||
def NoSideEffect : OpProperty; // op has no side effect
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// limitations under the License.
|
||||
// =============================================================================
|
||||
|
||||
#ifndef MLIR_SUPPORT_GENINFO_H_
|
||||
#define MLIR_SUPPORT_GENINFO_H_
|
||||
#ifndef MLIR_TABLEGEN_GENINFO_H_
|
||||
#define MLIR_TABLEGEN_GENINFO_H_
|
||||
|
||||
#include "mlir/Support/LLVM.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
|
@ -78,4 +78,4 @@ struct GenRegistration {
|
|||
|
||||
} // end namespace mlir
|
||||
|
||||
#endif // MLIR_SUPPORT_GENINFO_H_
|
||||
#endif // MLIR_TABLEGEN_GENINFO_H_
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef MLIR_SUPPORT_GENNAMEPARSER_H_
|
||||
#define MLIR_SUPPORT_GENNAMEPARSER_H_
|
||||
#ifndef MLIR_TABLEGEN_GENNAMEPARSER_H_
|
||||
#define MLIR_TABLEGEN_GENNAMEPARSER_H_
|
||||
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
|
||||
|
@ -37,4 +37,4 @@ struct GenNameParser : public llvm::cl::parser<const GenInfo *> {
|
|||
};
|
||||
} // end namespace mlir
|
||||
|
||||
#endif // MLIR_SUPPORT_GENNAMEPARSER_H_
|
||||
#endif // MLIR_TABLEGEN_GENNAMEPARSER_H_
|
||||
|
|
Loading…
Reference in New Issue