[tablegen] Add !listconcat operator with the similar semantics as !strconcat
[oota-llvm.git] / include / llvm / TableGen / Record.h
index 5b2a706ae171a42fd1ea19670c17929e87497482..e74a8f2d8ac3e9810366873290c9873817ea71b1 100644 (file)
@@ -929,7 +929,8 @@ public:
 ///
 class BinOpInit : public OpInit {
 public:
-  enum BinaryOp { ADD, SHL, SRA, SRL, STRCONCAT, CONCAT, EQ };
+  enum BinaryOp { ADD, SHL, SRA, SRL, LISTCONCAT, STRCONCAT, CONCAT, EQ };
+
 private:
   BinaryOp Opc;
   Init *LHS, *RHS;