summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/CallingConvLower.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-06-25 16:23:39 +0000
committerDan Gohman <gohman@apple.com>2007-06-25 16:23:39 +0000
commit7f32156bb9c017b71971c52fac892fa7b9b06dd2 (patch)
tree23e97cecd52949f8ec279c6abc8935b60a63f199 /include/llvm/CodeGen/CallingConvLower.h
parent32791e06d8bdfaca5350e089056db2ac66bf3adf (diff)
downloadllvm-7f32156bb9c017b71971c52fac892fa7b9b06dd2.tar.gz
llvm-7f32156bb9c017b71971c52fac892fa7b9b06dd2.tar.bz2
llvm-7f32156bb9c017b71971c52fac892fa7b9b06dd2.tar.xz
Generalize MVT::ValueType and associated functions to be able to represent
extended vector types. Remove the special SDNode opcodes used for pre-legalize vector operations, and the special MVT::Vector type used with them. Adjust lowering and legalize to work with the normal SDNode kinds instead, and to use the normal MVT functions to work with vector types instead of using the two special operands that the pre-legalize nodes held. This allows pre-legalize and post-legalize DAGs, and the code that operates on them, to be more consistent. Pre-legalize vector operators can be handled more consistently with scalar operators. And, -view-dag-combine1-dags and -view-legalize-dags now look prettier for vector code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37719 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/CallingConvLower.h')
-rw-r--r--include/llvm/CodeGen/CallingConvLower.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/CallingConvLower.h b/include/llvm/CodeGen/CallingConvLower.h
index 4308c377d1..959d0528c6 100644
--- a/include/llvm/CodeGen/CallingConvLower.h
+++ b/include/llvm/CodeGen/CallingConvLower.h
@@ -48,10 +48,10 @@ private:
LocInfo HTP : 7;
/// ValVT - The type of the value being assigned.
- MVT::ValueType ValVT : 8;
+ MVT::ValueType ValVT;
/// LocVT - The type of the location being assigned to.
- MVT::ValueType LocVT : 8;
+ MVT::ValueType LocVT;
public:
static CCValAssign getReg(unsigned ValNo, MVT::ValueType ValVT,