aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PowerPCTargetMachine.h
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2005-09-01 21:38:21 +0000
committerJim Laskey <jlaskey@mac.com>2005-09-01 21:38:21 +0000
commitb1e1180ca0b32f37aa74d7ad703eeaf91e66c8fa (patch)
treea34f84ab3bb875ee64e139f707e7591a5d162eca /lib/Target/PowerPC/PowerPCTargetMachine.h
parentb3302db18a779527a4b1cd7a2024543ade7e83c6 (diff)
1. Use SubtargetFeatures in llc/lli.
2. Propagate feature "string" to all targets. 3. Implement use of SubtargetFeatures in PowerPCTargetSubtarget. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23192 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PowerPCTargetMachine.h')
-rw-r--r--lib/Target/PowerPC/PowerPCTargetMachine.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PowerPCTargetMachine.h b/lib/Target/PowerPC/PowerPCTargetMachine.h
index 4a92acf6c0..0c12f30ba1 100644
--- a/lib/Target/PowerPC/PowerPCTargetMachine.h
+++ b/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; }