diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-22 20:50:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-22 20:50:18 +0000 |
commit | df16c223da9bdeeca1e5c58845df7f4ef610a89e (patch) | |
tree | e319aa8a1b2c59327467d4bddce924660e4d056f /llvm/lib/Target/PIC16/PIC16DebugInfo.h | |
parent | 7b26fce23e5f733d1a614beae71d0499e78aeab1 (diff) | |
download | bcm5719-llvm-df16c223da9bdeeca1e5c58845df7f4ef610a89e.tar.gz bcm5719-llvm-df16c223da9bdeeca1e5c58845df7f4ef610a89e.zip |
remove dead member.
llvm-svn: 79764
Diffstat (limited to 'llvm/lib/Target/PIC16/PIC16DebugInfo.h')
-rw-r--r-- | llvm/lib/Target/PIC16/PIC16DebugInfo.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16DebugInfo.h b/llvm/lib/Target/PIC16/PIC16DebugInfo.h index 1491716fc2f..d4d3a21b51a 100644 --- a/llvm/lib/Target/PIC16/PIC16DebugInfo.h +++ b/llvm/lib/Target/PIC16/PIC16DebugInfo.h @@ -16,8 +16,6 @@ #include "llvm/Analysis/DebugInfo.h" #include "llvm/Module.h" -#include "llvm/MC/MCAsmInfo.h" -#include <map> namespace llvm { class MachineFunction; @@ -94,7 +92,6 @@ namespace llvm { class PIC16DbgInfo { formatted_raw_ostream &O; - const MCAsmInfo *TAI; std::string CurFile; unsigned CurLine; @@ -103,8 +100,7 @@ namespace llvm { bool EmitDebugDirectives; public: - PIC16DbgInfo(formatted_raw_ostream &o, const MCAsmInfo *T) - : O(o), TAI(T) { + PIC16DbgInfo(formatted_raw_ostream &o): O(o) { CurFile = ""; CurLine = 0; EmitDebugDirectives = false; |