diff options
author | Jim Laskey <jlaskey@mac.com> | 2005-09-01 21:38:21 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2005-09-01 21:38:21 +0000 |
commit | 19058c39891ec3485a3ecd61941292c41c94dc6f (patch) | |
tree | 78629b38955713204d0253887810638811335c09 /llvm/lib/Target/PowerPC/PowerPCTargetMachine.h | |
parent | 3fee6a51a90cc86db048f8c9633a9d97788ecba8 (diff) | |
download | bcm5719-llvm-19058c39891ec3485a3ecd61941292c41c94dc6f.tar.gz bcm5719-llvm-19058c39891ec3485a3ecd61941292c41c94dc6f.zip |
1. Use SubtargetFeatures in llc/lli.
2. Propagate feature "string" to all targets.
3. Implement use of SubtargetFeatures in PowerPCTargetSubtarget.
llvm-svn: 23192
Diffstat (limited to 'llvm/lib/Target/PowerPC/PowerPCTargetMachine.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCTargetMachine.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.h b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.h index 4a92acf6c01..0c12f30ba1f 100644 --- a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.h +++ b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.h @@ -30,7 +30,8 @@ class PowerPCTargetMachine : public TargetMachine { PPCSubtarget Subtarget; protected: PowerPCTargetMachine(const std::string &name, IntrinsicLowering *IL, - const Module &M, const TargetData &TD, + const Module &M, const std::string &FS, + const TargetData &TD, const PowerPCFrameInfo &TFI); public: virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } |