summaryrefslogtreecommitdiff
path: root/utils/TableGen/NeonEmitter.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/TableGen/NeonEmitter.h')
-rw-r--r--utils/TableGen/NeonEmitter.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/TableGen/NeonEmitter.h b/utils/TableGen/NeonEmitter.h
index c97fabb91e..941c23509c 100644
--- a/utils/TableGen/NeonEmitter.h
+++ b/utils/TableGen/NeonEmitter.h
@@ -42,7 +42,9 @@ enum OpKind {
OpOrNot,
OpCast,
OpConcat,
- OpDup
+ OpDup,
+ OpHi,
+ OpLo
};
enum ClassKind {
@@ -82,6 +84,8 @@ namespace llvm {
OpMap["OP_ORN"] = OpOrNot;
OpMap["OP_CAST"] = OpCast;
OpMap["OP_CONC"] = OpConcat;
+ OpMap["OP_HI"] = OpHi;
+ OpMap["OP_LO"] = OpLo;
OpMap["OP_DUP"] = OpDup;
Record *SI = R.getClass("SInst");