Consistency

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28488 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2006-05-25 23:31:23 +00:00
parent 01575b7315
commit cc1fc220a0

View File

@ -380,6 +380,8 @@ static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
static void
HowToPassCCCArgument(MVT::ValueType ObjectVT, unsigned NumXMMRegs,
unsigned &ObjSize, unsigned &ObjXMMRegs) {
NumXMMRegs = 0;
switch (ObjectVT) {
default: assert(0 && "Unhandled argument type!");
case MVT::i1:
@ -774,6 +776,7 @@ HowToPassFastCCArgument(MVT::ValueType ObjectVT,
unsigned &ObjXMMRegs) {
ObjSize = 0;
NumIntRegs = 0;
NumXMMRegs = 0;
switch (ObjectVT) {
default: assert(0 && "Unhandled argument type!");