diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-02 04:41:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-02 04:41:14 +0000 |
commit | 3ea23cff6521561f7b855b54786a369ac9abe128 (patch) | |
tree | 88686dcc69c58256571a2b11affa1d7a9a6468fa /llvm/lib/Target/PIC16/PIC16TargetMachine.cpp | |
parent | fb53861ee0bae7e24d418f990d1f7778e11719cc (diff) | |
download | bcm5719-llvm-3ea23cff6521561f7b855b54786a369ac9abe128.tar.gz bcm5719-llvm-3ea23cff6521561f7b855b54786a369ac9abe128.zip |
PIC16 TAI doesn't need TM
llvm-svn: 77867
Diffstat (limited to 'llvm/lib/Target/PIC16/PIC16TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/PIC16/PIC16TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16TargetMachine.cpp b/llvm/lib/Target/PIC16/PIC16TargetMachine.cpp index 6a4492c5484..1c5d3d4f2e5 100644 --- a/llvm/lib/Target/PIC16/PIC16TargetMachine.cpp +++ b/llvm/lib/Target/PIC16/PIC16TargetMachine.cpp @@ -38,7 +38,7 @@ CooperTargetMachine::CooperTargetMachine(const Target &T, const Module &M, const TargetAsmInfo *PIC16TargetMachine::createTargetAsmInfo() const { - return new PIC16TargetAsmInfo(*this); + return new PIC16TargetAsmInfo(); } bool PIC16TargetMachine::addInstSelector(PassManagerBase &PM, |