diff options
Diffstat (limited to 'lib/Target/Sparc/SparcTargetMachine.h')
-rw-r--r-- | lib/Target/Sparc/SparcTargetMachine.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/Target/Sparc/SparcTargetMachine.h b/lib/Target/Sparc/SparcTargetMachine.h index 0977744..196ad75 100644 --- a/lib/Target/Sparc/SparcTargetMachine.h +++ b/lib/Target/Sparc/SparcTargetMachine.h @@ -1,4 +1,4 @@ -//===-- SparcV8TargetMachine.h - Define TargetMachine for SparcV8 -*- C++ -*-=// +//===-- SparcTargetMachine.h - Define TargetMachine for Sparc ---*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -7,33 +7,33 @@ // //===----------------------------------------------------------------------===// // -// This file declares the SparcV8 specific subclass of TargetMachine. +// This file declares the Sparc specific subclass of TargetMachine. // //===----------------------------------------------------------------------===// -#ifndef SPARCV8TARGETMACHINE_H -#define SPARCV8TARGETMACHINE_H +#ifndef SPARCTARGETMACHINE_H +#define SPARCTARGETMACHINE_H #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetFrameInfo.h" #include "llvm/PassManager.h" -#include "SparcV8InstrInfo.h" -#include "SparcV8Subtarget.h" +#include "SparcInstrInfo.h" +#include "SparcSubtarget.h" namespace llvm { class IntrinsicLowering; class Module; -class SparcV8TargetMachine : public TargetMachine { - SparcV8Subtarget Subtarget; - SparcV8InstrInfo InstrInfo; +class SparcTargetMachine : public TargetMachine { + SparcSubtarget Subtarget; + SparcInstrInfo InstrInfo; TargetFrameInfo FrameInfo; public: - SparcV8TargetMachine(const Module &M, IntrinsicLowering *IL, - const std::string &FS); + SparcTargetMachine(const Module &M, IntrinsicLowering *IL, + const std::string &FS); - virtual const SparcV8InstrInfo *getInstrInfo() const { return &InstrInfo; } + virtual const SparcInstrInfo *getInstrInfo() const { return &InstrInfo; } virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } virtual const TargetSubtarget *getSubtargetImpl() const{ return &Subtarget; } virtual const MRegisterInfo *getRegisterInfo() const { |