Fix QOpcode assignment to Opc.

llvm-svn: 113837
This commit is contained in:
Eric Christopher 2010-09-14 08:31:25 +00:00
parent 824c2f537c
commit 726838a3e5
1 changed files with 2 additions and 2 deletions

View File

@ -1278,8 +1278,8 @@ SDNode *ARMDAGToDAGISel::SelectVLDSTLane(SDNode *N, bool IsLoad,
Ops.push_back(MemAddr); Ops.push_back(MemAddr);
Ops.push_back(Align); Ops.push_back(Align);
unsigned Opc = (is64BitVector ? DOpcodes[OpcodeIndex] : unsigned Opc = (is64BitVector ? DOpcodes[OpcodeIndex] :
Opc = QOpcodes[OpcodeIndex]); QOpcodes[OpcodeIndex]);
SDValue SuperReg; SDValue SuperReg;
SDValue V0 = N->getOperand(0+3); SDValue V0 = N->getOperand(0+3);