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 | 181c7cbb033ebdc80c8c7d365950f7a0a9daf6c8 (patch) | |
| tree | 8ae272bc9790c58db21d7d81049bdc5017151f44 /lib/Target/PIC16/PIC16DebugInfo.h | |
| parent | f97ae6be182c6f279e6e6fbf62df467ca71af106 (diff) | |
| download | external_llvm-181c7cbb033ebdc80c8c7d365950f7a0a9daf6c8.zip external_llvm-181c7cbb033ebdc80c8c7d365950f7a0a9daf6c8.tar.gz external_llvm-181c7cbb033ebdc80c8c7d365950f7a0a9daf6c8.tar.bz2 | |
revert 79764, my dependencies failed me again.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79767 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PIC16/PIC16DebugInfo.h')
| -rw-r--r-- | lib/Target/PIC16/PIC16DebugInfo.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Target/PIC16/PIC16DebugInfo.h b/lib/Target/PIC16/PIC16DebugInfo.h index d4d3a21..ae677ca 100644 --- a/lib/Target/PIC16/PIC16DebugInfo.h +++ b/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; |
