diff options
author | Chris Lattner <sabre@nondot.org> | 2010-07-05 05:53:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-07-05 05:53:14 +0000 |
commit | c4a7073db367f5641772e42cd2474582c42acf53 (patch) | |
tree | 515f569f48f3148a20219d6fda50ccd2080dfc39 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 60db4557cd3139568c74271f1cce33242883d180 (diff) | |
download | bcm5719-llvm-c4a7073db367f5641772e42cd2474582c42acf53.tar.gz bcm5719-llvm-c4a7073db367f5641772e42cd2474582c42acf53.zip |
more tidying.
llvm-svn: 107615
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 9d4f90717b2..2213d54dab6 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -641,16 +641,12 @@ static unsigned getVectorTypeBreakdownMVT(MVT VT, MVT &IntermediateVT, EVT DestVT = TLI->getRegisterType(NewVT); RegisterVT = DestVT; - if (EVT(DestVT).bitsLT(NewVT)) { - // Value is expanded, e.g. i64 -> i16. + if (EVT(DestVT).bitsLT(NewVT)) // Value is expanded, e.g. i64 -> i16. return NumVectorRegs*(NewVT.getSizeInBits()/DestVT.getSizeInBits()); - } else { - // Otherwise, promotion or legal types use the same number of registers as - // the vector decimated to the appropriate level. - return NumVectorRegs; - } - return 1; + // Otherwise, promotion or legal types use the same number of registers as + // the vector decimated to the appropriate level. + return NumVectorRegs; } /// computeRegisterProperties - Once all of the register classes are added, |