[Hexagon] Remove redundant assignment.

Identified by the Clang static analyzer.

llvm-svn: 253664
This commit is contained in:
Tilmann Scheller 2015-11-20 13:27:30 +00:00
parent b700203c8b
commit 4cd1d51a4d
1 changed files with 1 additions and 1 deletions

View File

@ -1495,7 +1495,7 @@ bool HexagonGenInsert::runOnMachineFunction(MachineFunction &MF) {
// version of DCE that preserves lifetime markers. Without it, merging
// of stack objects can fail to recognize and merge disjoint objects
// leading to unnecessary stack growth.
Changed |= removeDeadCode(MDT->getRootNode());
removeDeadCode(MDT->getRootNode());
const HexagonEvaluator HE(*HRI, *MRI, *HII, MF);
BitTracker BTLoc(HE, MF);