summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenIntrinsics.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-24 19:49:31 +0000
committerChris Lattner <sabre@nondot.org>2006-03-24 19:49:31 +0000
commit43fbbc36dc64243a1a57b072d37bccf6dad4d3cb (patch)
treee5d67773827d2e9fa4eb8ba9a843717d2cca106c /utils/TableGen/CodeGenIntrinsics.h
parent782651cffe391298adf58cacead8bcc96bc13e30 (diff)
downloadllvm-43fbbc36dc64243a1a57b072d37bccf6dad4d3cb.tar.gz
llvm-43fbbc36dc64243a1a57b072d37bccf6dad4d3cb.tar.bz2
llvm-43fbbc36dc64243a1a57b072d37bccf6dad4d3cb.tar.xz
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
Diffstat (limited to 'utils/TableGen/CodeGenIntrinsics.h')
-rw-r--r--utils/TableGen/CodeGenIntrinsics.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/TableGen/CodeGenIntrinsics.h b/utils/TableGen/CodeGenIntrinsics.h
index 5fcff927a7..2698836ecc 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 @@ namespace llvm {
/// 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;