Move CodeGenIntrinsic implementation to CodeGenTarget.cpp with the rest of
the CodeGen* implementations.
Parse the MVT::ValueType for each operand of the intrinsics.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27075 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/CodeGenIntrinsics.h b/utils/TableGen/CodeGenIntrinsics.h
index 5fcff92..2698836 100644
--- a/utils/TableGen/CodeGenIntrinsics.h
+++ b/utils/TableGen/CodeGenIntrinsics.h
@@ -16,6 +16,7 @@
#include <string>
#include <vector>
+#include "llvm/CodeGen/ValueTypes.h"
namespace llvm {
class Record;
@@ -32,6 +33,9 @@
/// of the arguments. These are things like Type::UIntTyID.
std::vector<std::string> ArgTypes;
+ /// ArgVTs - The MVT::ValueType for each argument type.
+ std::vector<MVT::ValueType> ArgVTs;
+
/// ArgTypeDefs - The records for each argument type.
///
std::vector<Record*> ArgTypeDefs;