aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-dis
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/tools/llvm-dis')
-rw-r--r--llvm/tools/llvm-dis/llvm-dis.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/tools/llvm-dis/llvm-dis.cpp b/llvm/tools/llvm-dis/llvm-dis.cpp
index 422eb85..2b43d27 100644
--- a/llvm/tools/llvm-dis/llvm-dis.cpp
+++ b/llvm/tools/llvm-dis/llvm-dis.cpp
@@ -131,20 +131,6 @@ public:
printDebugLoc(DL,OS);
OS << "]";
}
- if (const DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) {
- if (!Padded) {
- OS.PadToColumn(50);
- OS << ";";
- }
- OS << " [debug variable = " << DDI->getVariable()->getName() << "]";
- }
- else if (const DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) {
- if (!Padded) {
- OS.PadToColumn(50);
- OS << ";";
- }
- OS << " [debug variable = " << DVI->getVariable()->getName() << "]";
- }
}
}
};