summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-22 20:56:12 +0000
committerChris Lattner <sabre@nondot.org>2009-08-22 20:56:12 +0000
commite4d110be70089f68f0e70e6ce0637323ad77eaf5 (patch)
tree8ae272bc9790c58db21d7d81049bdc5017151f44 /lib
parentc75e7d2a06205f6c9870624eb5e8174a2b7b1bdd (diff)
downloadllvm-e4d110be70089f68f0e70e6ce0637323ad77eaf5.tar.gz
llvm-e4d110be70089f68f0e70e6ce0637323ad77eaf5.tar.bz2
llvm-e4d110be70089f68f0e70e6ce0637323ad77eaf5.tar.xz
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')
-rw-r--r--lib/Target/PIC16/AsmPrinter/PIC16AsmPrinter.cpp2
-rw-r--r--lib/Target/PIC16/PIC16DebugInfo.cpp1
-rw-r--r--lib/Target/PIC16/PIC16DebugInfo.h4
3 files changed, 5 insertions, 2 deletions
diff --git a/lib/Target/PIC16/AsmPrinter/PIC16AsmPrinter.cpp b/lib/Target/PIC16/AsmPrinter/PIC16AsmPrinter.cpp
index 8b1cee9e25..d6e95561a2 100644
--- a/lib/Target/PIC16/AsmPrinter/PIC16AsmPrinter.cpp
+++ b/lib/Target/PIC16/AsmPrinter/PIC16AsmPrinter.cpp
@@ -35,7 +35,7 @@ using namespace llvm;
PIC16AsmPrinter::PIC16AsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
const MCAsmInfo *T, bool V)
-: AsmPrinter(O, TM, T, V), DbgInfo(O) {
+: AsmPrinter(O, TM, T, V), DbgInfo(O, T) {
PTLI = static_cast<PIC16TargetLowering*>(TM.getTargetLowering());
PTAI = static_cast<const PIC16MCAsmInfo*>(T);
PTOF = (PIC16TargetObjectFile*)&PTLI->getObjFileLowering();
diff --git a/lib/Target/PIC16/PIC16DebugInfo.cpp b/lib/Target/PIC16/PIC16DebugInfo.cpp
index 460be58992..75c9556340 100644
--- a/lib/Target/PIC16/PIC16DebugInfo.cpp
+++ b/lib/Target/PIC16/PIC16DebugInfo.cpp
@@ -15,6 +15,7 @@
#include "PIC16DebugInfo.h"
#include "llvm/GlobalVariable.h"
#include "llvm/CodeGen/MachineFunction.h"
+#include "llvm/MC/MCAsmInfo.h"
#include "llvm/Support/DebugLoc.h"
#include "llvm/Support/FormattedStream.h"
#include "llvm/ADT/SmallString.h"
diff --git a/lib/Target/PIC16/PIC16DebugInfo.h b/lib/Target/PIC16/PIC16DebugInfo.h
index d4d3a21b51..ae677caaa4 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;