Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit 72bf3d3

Browse files
author
Tilmann Scheller
committed
[Hexagon] Remove redundant assignment.
Identified by the Clang static analyzer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253664 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent d498a1b commit 72bf3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Target/Hexagon/HexagonGenInsert.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1495,7 +1495,7 @@ bool HexagonGenInsert::runOnMachineFunction(MachineFunction &MF) {
14951495
// version of DCE that preserves lifetime markers. Without it, merging
14961496
// of stack objects can fail to recognize and merge disjoint objects
14971497
// leading to unnecessary stack growth.
1498-
Changed |= removeDeadCode(MDT->getRootNode());
1498+
removeDeadCode(MDT->getRootNode());
14991499

15001500
const HexagonEvaluator HE(*HRI, *MRI, *HII, MF);
15011501
BitTracker BTLoc(HE, MF);

0 commit comments

Comments
 (0)