[llvm-commits] CVS: llvm/lib/Target/CBackend/CTargetMachine.h
Jim Laskey
jlaskey at apple.com
Thu Sep 1 14:38:38 PDT 2005
Changes in directory llvm/lib/Target/CBackend:
CTargetMachine.h updated: 1.7 -> 1.8
---
Log message:
1. Use SubtargetFeatures in llc/lli.
2. Propagate feature "string" to all targets.
3. Implement use of SubtargetFeatures in PowerPCTargetSubtarget.
---
Diffs of the changes: (+2 -1)
CTargetMachine.h | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/lib/Target/CBackend/CTargetMachine.h
diff -u llvm/lib/Target/CBackend/CTargetMachine.h:1.7 llvm/lib/Target/CBackend/CTargetMachine.h:1.8
--- llvm/lib/Target/CBackend/CTargetMachine.h:1.7 Fri Jun 24 21:48:36 2005
+++ llvm/lib/Target/CBackend/CTargetMachine.h Thu Sep 1 16:38:20 2005
@@ -20,7 +20,8 @@
class IntrinsicLowering;
struct CTargetMachine : public TargetMachine {
- CTargetMachine(const Module &M, IntrinsicLowering *IL) :
+ CTargetMachine(const Module &M, IntrinsicLowering *IL,
+ const std::string &FS) :
TargetMachine("CBackend", IL, M) {}
// This is the only thing that actually does anything here.
More information about the llvm-commits
mailing list