From 726838a3e5d6fe9f2e6d596878ad84cf5cf23241 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Tue, 14 Sep 2010 08:31:25 +0000 Subject: [PATCH] Fix QOpcode assignment to Opc. llvm-svn: 113837 --- llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp b/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp index 5cfeb290fe27..57c41c414da4 100644 --- a/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp +++ b/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp @@ -1278,8 +1278,8 @@ SDNode *ARMDAGToDAGISel::SelectVLDSTLane(SDNode *N, bool IsLoad, Ops.push_back(MemAddr); Ops.push_back(Align); - unsigned Opc = (is64BitVector ? DOpcodes[OpcodeIndex] : - Opc = QOpcodes[OpcodeIndex]); + unsigned Opc = (is64BitVector ? DOpcodes[OpcodeIndex] : + QOpcodes[OpcodeIndex]); SDValue SuperReg; SDValue V0 = N->getOperand(0+3);