Skip to content

Commit 04ac720

Browse files
committed
Change XeVM_Op base to LLVM_OpBase. Use quotes for file inclusion.
1 parent 2b2caf8 commit 04ac720

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

mlir/include/mlir/Dialect/LLVMIR/XeVMDialect.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
#include "mlir/IR/OpDefinition.h"
1616
#include "mlir/Target/LLVMIR/ModuleTranslation.h"
1717

18-
#include <mlir/Dialect/LLVMIR/XeVMOpsEnums.h.inc>
18+
#include "mlir/Dialect/LLVMIR/XeVMOpsEnums.h.inc"
1919

2020
#define GET_ATTRDEF_CLASSES
21-
#include <mlir/Dialect/LLVMIR/XeVMOpsAttributes.h.inc>
21+
#include "mlir/Dialect/LLVMIR/XeVMOpsAttributes.h.inc"
2222

2323
#define GET_OP_CLASSES
24-
#include <mlir/Dialect/LLVMIR/XeVMOps.h.inc>
24+
#include "mlir/Dialect/LLVMIR/XeVMOps.h.inc"
2525

26-
#include <mlir/Dialect/LLVMIR/XeVMOpsDialect.h.inc>
26+
#include "mlir/Dialect/LLVMIR/XeVMOpsDialect.h.inc"
2727

2828
#endif /* MLIR_DIALECT_LLVMIR_XEVMDIALECT_H_ */

mlir/include/mlir/Dialect/LLVMIR/XeVMOps.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class XeVM_Attr<string attrName, string attrMnemonic, list<Trait> traits = []>
4545
}
4646

4747
class XeVM_Op<string mnemonic, list<Trait> traits = []>
48-
: Op<XeVM_Dialect, mnemonic, traits> {
48+
: LLVM_OpBase<XeVM_Dialect, mnemonic, traits> {
4949

5050
code extraBaseClassDeclaration = [{
5151
void printProperties(::mlir::MLIRContext *ctx,

0 commit comments

Comments
 (0)