Fix incorrect names due to merging of tblgen tools.

PiperOrigin-RevId: 227131485
This commit is contained in:
Jacques Pienaar 2018-12-28 06:57:44 -08:00 committed by jpienaar
parent d798f9bad5
commit f845bc4542
3 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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_

View File

@ -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_