diff options
author | Owen Anderson <resistor@mac.com> | 2009-08-11 20:47:22 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-08-11 20:47:22 +0000 |
commit | 9f94459d24d82504f0962dfe366a5b39576c4809 (patch) | |
tree | 30fe4c6ae2098fabf6467a05035d39feec7d6b59 /llvm/utils/TableGen/CodeGenIntrinsics.h | |
parent | a1e04d43c4986c24723e8840d9f7a00ed068c2df (diff) | |
download | bcm5719-llvm-9f94459d24d82504f0962dfe366a5b39576c4809.tar.gz bcm5719-llvm-9f94459d24d82504f0962dfe366a5b39576c4809.zip |
Split EVT into MVT and EVT, the former representing _just_ a primitive type, while
the latter is capable of representing either a primitive or an extended type.
llvm-svn: 78713
Diffstat (limited to 'llvm/utils/TableGen/CodeGenIntrinsics.h')
-rw-r--r-- | llvm/utils/TableGen/CodeGenIntrinsics.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/utils/TableGen/CodeGenIntrinsics.h b/llvm/utils/TableGen/CodeGenIntrinsics.h index 685e141f99b..7e7bdf989ac 100644 --- a/llvm/utils/TableGen/CodeGenIntrinsics.h +++ b/llvm/utils/TableGen/CodeGenIntrinsics.h @@ -37,20 +37,20 @@ namespace llvm { /// continues from there through the parameter list. This is useful for /// "matching" types. struct IntrinsicSignature { - /// RetVTs - The EVT::SimpleValueType for each return type. Note that this + /// RetVTs - The MVT::SimpleValueType for each return type. Note that this /// list is only populated when in the context of a target .td file. When /// building Intrinsics.td, this isn't available, because we don't know /// the target pointer size. - std::vector<EVT::SimpleValueType> RetVTs; + std::vector<MVT::SimpleValueType> RetVTs; /// RetTypeDefs - The records for each return type. std::vector<Record*> RetTypeDefs; - /// ParamVTs - The EVT::SimpleValueType for each parameter type. Note that + /// ParamVTs - The MVT::SimpleValueType for each parameter type. Note that /// this list is only populated when in the context of a target .td file. /// When building Intrinsics.td, this isn't available, because we don't /// know the target pointer size. - std::vector<EVT::SimpleValueType> ParamVTs; + std::vector<MVT::SimpleValueType> ParamVTs; /// ParamTypeDefs - The records for each parameter type. std::vector<Record*> ParamTypeDefs; |