summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit2c58141fd954e5879f0d561d71b6551bbac605b9 (patch)
tree400994a022ef434e559ba13d3b9fa99d6e6c4bf5 /llvm/utils/TableGen/CodeGenIntrinsics.h
parent926e2067831d29bdca16f2cadc69dc483d484c0b (diff)
downloadbcm5719-llvm-2c58141fd954e5879f0d561d71b6551bbac605b9.tar.gz
bcm5719-llvm-2c58141fd954e5879f0d561d71b6551bbac605b9.zip
Move CodeGenIntrinsic implementation to CodeGenTarget.cpp with the rest of
the CodeGen* implementations. Parse the MVT::ValueType for each operand of the intrinsics. llvm-svn: 27075
Diffstat (limited to 'llvm/utils/TableGen/CodeGenIntrinsics.h')
-rw-r--r--llvm/utils/TableGen/CodeGenIntrinsics.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenIntrinsics.h b/llvm/utils/TableGen/CodeGenIntrinsics.h
index 5fcff927a70..2698836eccd 100644
--- a/llvm/utils/TableGen/CodeGenIntrinsics.h
+++ b/llvm/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;
OpenPOWER on IntegriCloud