From: Evan Cheng Date: Thu, 1 Jun 2006 05:53:27 +0000 (+0000) Subject: Typos X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2675534b7f3a7652e2a0040f415c60557a84e3a8;p=oota-llvm.git Typos git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28617 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index a622e819fa3..8608d432738 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -380,7 +380,7 @@ static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg, static void HowToPassCCCArgument(MVT::ValueType ObjectVT, unsigned NumXMMRegs, unsigned &ObjSize, unsigned &ObjXMMRegs) { - NumXMMRegs = 0; + ObjXMMRegs = 0; switch (ObjectVT) { default: assert(0 && "Unhandled argument type!"); @@ -784,8 +784,8 @@ HowToPassFastCCArgument(MVT::ValueType ObjectVT, unsigned &ObjSize, unsigned &ObjIntRegs, unsigned &ObjXMMRegs) { ObjSize = 0; - NumIntRegs = 0; - NumXMMRegs = 0; + ObjIntRegs = 0; + ObjXMMRegs = 0; switch (ObjectVT) { default: assert(0 && "Unhandled argument type!");