Eliminate a compile time warning.

llvm-svn: 60145
This commit is contained in:
Evan Cheng 2008-11-27 02:29:25 +00:00
parent 2d311e8354
commit b133907e61
1 changed files with 1 additions and 1 deletions

View File

@ -478,7 +478,7 @@ SDNode *PIC16TargetLowering::ExpandShift(SDNode *N, SelectionDAG &DAG) {
SDVTList Tys;
SDValue ShfCom; // Shift Component - Lo component should be shifted
SDValue RotCom; // Rotate Component- Hi component should be rotated
PIC16ISD::NodeType ShfNode, RotNode;
PIC16ISD::NodeType ShfNode = PIC16ISD::Dummy, RotNode = PIC16ISD::Dummy;
// Currently handling Constant shift only
if (Amt.getOpcode() != ISD::Constant)