diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-22 20:56:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-22 20:56:12 +0000 |
commit | 757dd1cd93eda48b15e3ff77771c92bf60562124 (patch) | |
tree | b33415b8ccf8b4fe18b4b26fe345224f97154c6e /llvm/lib/Target/PIC16/PIC16DebugInfo.h | |
parent | e7baa8e970078e9d79bf423cfd1541a50a51c5a3 (diff) | |
download | bcm5719-llvm-757dd1cd93eda48b15e3ff77771c92bf60562124.tar.gz bcm5719-llvm-757dd1cd93eda48b15e3ff77771c92bf60562124.zip |
revert 79764, my dependencies failed me again.
llvm-svn: 79767
Diffstat (limited to 'llvm/lib/Target/PIC16/PIC16DebugInfo.h')
-rw-r--r-- | llvm/lib/Target/PIC16/PIC16DebugInfo.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16DebugInfo.h b/llvm/lib/Target/PIC16/PIC16DebugInfo.h index d4d3a21b51a..ae677caaa44 100644 --- a/llvm/lib/Target/PIC16/PIC16DebugInfo.h +++ b/llvm/lib/Target/PIC16/PIC16DebugInfo.h @@ -92,6 +92,7 @@ namespace llvm { class PIC16DbgInfo { formatted_raw_ostream &O; + const MCAsmInfo *TAI; std::string CurFile; unsigned CurLine; @@ -100,7 +101,8 @@ namespace llvm { bool EmitDebugDirectives; public: - PIC16DbgInfo(formatted_raw_ostream &o): O(o) { + PIC16DbgInfo(formatted_raw_ostream &o, const MCAsmInfo *T) + : O(o), TAI(T) { CurFile = ""; CurLine = 0; EmitDebugDirectives = false; |