diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-09-07 23:39:26 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-09-07 23:39:26 +0000 |
commit | fde1b3bb2f15b74c713d98a79fcddaff1ac00dd1 (patch) | |
tree | 80b75444ec775521e8d803493cf95d5d41ddc300 /lib/Target/Alpha/AlphaTargetMachine.h | |
parent | f93f68347f06f6e12dd214c21436bfde55e66bf7 (diff) |
1. Remove condition on delete.
2. Protect and outline createTargetAsmInfo.
3. Misc. kruft.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30169 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaTargetMachine.h')
-rw-r--r-- | lib/Target/Alpha/AlphaTargetMachine.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/Target/Alpha/AlphaTargetMachine.h b/lib/Target/Alpha/AlphaTargetMachine.h index d47ca8215c..c00e71c875 100644 --- a/lib/Target/Alpha/AlphaTargetMachine.h +++ b/lib/Target/Alpha/AlphaTargetMachine.h @@ -20,7 +20,6 @@ #include "AlphaInstrInfo.h" #include "AlphaJITInfo.h" #include "AlphaSubtarget.h" -#include "AlphaTargetAsmInfo.h" namespace llvm { @@ -32,13 +31,12 @@ class AlphaTargetMachine : public LLVMTargetMachine { TargetFrameInfo FrameInfo; AlphaJITInfo JITInfo; AlphaSubtarget Subtarget; - AlphaTargetAsmInfo *AsmInfo; + +protected: + virtual const TargetAsmInfo *createTargetAsmInfo() const; public: AlphaTargetMachine(const Module &M, const std::string &FS); - ~AlphaTargetMachine() { - if (AsmInfo) delete AsmInfo; - } virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; } virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } @@ -51,10 +49,6 @@ public: return &JITInfo; } - virtual const TargetAsmInfo *createTargetAsmInfo() const { - return static_cast<const TargetAsmInfo *>(new AlphaTargetAsmInfo(*this)); - } - static unsigned getJITMatchQuality(); static unsigned getModuleMatchQuality(const Module &M); |