Handle load/store of misaligned vectors that are the
[oota-llvm.git] / lib / CodeGen / LiveVariables.cpp
index 4b428d6f31ce40140ce656d568c61130930d133d..48bf809e4820bea4d5a1235d8cf94e0252223a66 100644 (file)
@@ -246,7 +246,7 @@ void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
   // Now reset the use information for the sub-registers.
   for (const unsigned *SubRegs = RegInfo->getSubRegisters(Reg);
        unsigned SubReg = *SubRegs; ++SubRegs) {
-    // FIXME: Should we do: "PhysRegPartUse[SubReg] = NULL;" here?
+    PhysRegPartUse[SubReg] = NULL;
     PhysRegInfo[SubReg] = MI;
     PhysRegUsed[SubReg] = true;
   }