Skip to content

Commit

Permalink
Remove assignments which aren't used afterwards.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158534 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
isanbard committed Jun 15, 2012
1 parent cbf7390 commit e68470a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tools/llvm-dis/llvm-dis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ class CommentWriter : public AssemblyAnnotationWriter {
DIVariable Var(DDI->getVariable());
if (!Padded) {
OS.PadToColumn(50);
Padded = true;
OS << ";";
}
OS << " [debug variable = " << Var.getName() << "]";
Expand All @@ -102,7 +101,6 @@ class CommentWriter : public AssemblyAnnotationWriter {
DIVariable Var(DVI->getVariable());
if (!Padded) {
OS.PadToColumn(50);
Padded = true;
OS << ";";
}
OS << " [debug variable = " << Var.getName() << "]";
Expand Down

0 comments on commit e68470a

Please sign in to comment.