diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:17:27 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:17:27 +0000 |
commit | 67c32a98315f785a9ec9d531c1f571a0196c7463 (patch) | |
tree | 4abb9cbeecc7901726dd0b4a37369596c852e9ef /lib/Target/Mips/Mips16HardFloat.h | |
parent | 9f61947910e6ab40de38e6b4034751ef1513200f (diff) |
Diffstat (limited to 'lib/Target/Mips/Mips16HardFloat.h')
-rw-r--r-- | lib/Target/Mips/Mips16HardFloat.h | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/lib/Target/Mips/Mips16HardFloat.h b/lib/Target/Mips/Mips16HardFloat.h index 826887ea5ebe..586cc252353b 100644 --- a/lib/Target/Mips/Mips16HardFloat.h +++ b/lib/Target/Mips/Mips16HardFloat.h @@ -12,40 +12,29 @@ // //===----------------------------------------------------------------------===// +#ifndef LLVM_LIB_TARGET_MIPS_MIPS16HARDFLOAT_H +#define LLVM_LIB_TARGET_MIPS_MIPS16HARDFLOAT_H + #include "MCTargetDesc/MipsMCTargetDesc.h" #include "MipsTargetMachine.h" #include "llvm/Pass.h" #include "llvm/Target/TargetMachine.h" - -#ifndef MIPS16HARDFLOAT_H -#define MIPS16HARDFLOAT_H - using namespace llvm; namespace llvm { class Mips16HardFloat : public ModulePass { - public: static char ID; - Mips16HardFloat(MipsTargetMachine &TM_) : ModulePass(ID), - TM(TM_), Subtarget(TM.getSubtarget<MipsSubtarget>()) { - } - - const char *getPassName() const override { - return "MIPS16 Hard Float Pass"; - } + Mips16HardFloat(MipsTargetMachine &TM_) : ModulePass(ID), TM(TM_) {} + const char *getPassName() const override { return "MIPS16 Hard Float Pass"; } bool runOnModule(Module &M) override; protected: - /// Keep a pointer to the MipsSubtarget around so that we can make the right - /// decision when generating code for different targets. - const TargetMachine &TM; - const MipsSubtarget &Subtarget; - + const MipsTargetMachine &TM; }; ModulePass *createMips16HardFloat(MipsTargetMachine &TM); |