summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-18 01:44:44 +0000
committerChris Lattner <sabre@nondot.org>2006-03-18 01:44:44 +0000
commit32206f54c6dd0829d6c74ed0452476fd4e0ca382 (patch)
tree67ab17d17982568ae3dadfa6895a82dda9887062 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parenta9567603596433fa264f1de6e78b629d3933c3c3 (diff)
downloadbcm5719-llvm-32206f54c6dd0829d6c74ed0452476fd4e0ca382.tar.gz
bcm5719-llvm-32206f54c6dd0829d6c74ed0452476fd4e0ca382.zip
Change the structure of lowering vector stuff. Note: This breaks some
things. llvm-svn: 26840
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 46321752690..1976f326252 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -1422,11 +1422,11 @@ SDOperand SelectionDAG::getVecLoad(unsigned Count, MVT::ValueType EVT,
if (N) return SDOperand(N, 0);
std::vector<SDOperand> Ops;
Ops.reserve(5);
- Ops.push_back(getConstant(Count, MVT::i32));
- Ops.push_back(getValueType(EVT));
Ops.push_back(Chain);
Ops.push_back(Ptr);
Ops.push_back(SV);
+ Ops.push_back(getConstant(Count, MVT::i32));
+ Ops.push_back(getValueType(EVT));
std::vector<MVT::ValueType> VTs;
VTs.reserve(2);
VTs.push_back(MVT::Vector); VTs.push_back(MVT::Other); // Add token chain.
OpenPOWER on IntegriCloud