diff options
| author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2008-07-23 16:01:50 +0000 |
|---|---|---|
| committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2008-07-23 16:01:50 +0000 |
| commit | fdb4cec2fe1e990f81cf9b6bd22f162346d3124b (patch) | |
| tree | 6477d045c1e8df15a1e985118c93c8ccbf33d0dd /llvm/lib/Target/Mips/MipsTargetAsmInfo.h | |
| parent | 6bbb53dac82cc7aeff863f31ca790bd15d8eee91 (diff) | |
| download | bcm5719-llvm-fdb4cec2fe1e990f81cf9b6bd22f162346d3124b.tar.gz bcm5719-llvm-fdb4cec2fe1e990f81cf9b6bd22f162346d3124b.zip | |
Minor fixes.
Added ConstantPool support.
llvm-svn: 53951
Diffstat (limited to 'llvm/lib/Target/Mips/MipsTargetAsmInfo.h')
| -rw-r--r-- | llvm/lib/Target/Mips/MipsTargetAsmInfo.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/Mips/MipsTargetAsmInfo.h b/llvm/lib/Target/Mips/MipsTargetAsmInfo.h index e5bb4d91058..c798ae2a373 100644 --- a/llvm/lib/Target/Mips/MipsTargetAsmInfo.h +++ b/llvm/lib/Target/Mips/MipsTargetAsmInfo.h @@ -14,11 +14,12 @@ #ifndef MIPSTARGETASMINFO_H #define MIPSTARGETASMINFO_H -#include "llvm/Target/TargetAsmInfo.h" -#include "llvm/Target/ELFTargetAsmInfo.h" +#include "MipsSubtarget.h" #include "llvm/DerivedTypes.h" #include "llvm/GlobalVariable.h" +#include "llvm/Target/TargetAsmInfo.h" #include "llvm/Target/TargetOptions.h" +#include "llvm/Target/ELFTargetAsmInfo.h" namespace llvm { @@ -36,8 +37,7 @@ namespace llvm { virtual const Section* SelectSectionForGlobal(const GlobalValue *GV) const; private: - const MipsTargetMachine *MipsTM; - + const MipsSubtarget *Subtarget; }; } // namespace llvm |

