[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaTargetMachine.cpp AlphaTargetMachine.h
Jim Laskey
jlaskey at apple.com
Thu Sep 1 14:38:37 PDT 2005
Changes in directory llvm/lib/Target/Alpha:
AlphaTargetMachine.cpp updated: 1.11 -> 1.12
AlphaTargetMachine.h updated: 1.8 -> 1.9
---
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: (+4 -2)
AlphaTargetMachine.cpp | 3 ++-
AlphaTargetMachine.h | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
Index: llvm/lib/Target/Alpha/AlphaTargetMachine.cpp
diff -u llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.11 llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.12
--- llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.11 Wed Aug 3 17:33:21 2005
+++ llvm/lib/Target/Alpha/AlphaTargetMachine.cpp Thu Sep 1 16:38:20 2005
@@ -58,7 +58,8 @@
#endif
}
-AlphaTargetMachine::AlphaTargetMachine( const Module &M, IntrinsicLowering *IL)
+AlphaTargetMachine::AlphaTargetMachine(const Module &M, IntrinsicLowering *IL,
+ const std::string &FS)
: TargetMachine("alpha", IL, true),
FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0),
JITInfo(*this)
Index: llvm/lib/Target/Alpha/AlphaTargetMachine.h
diff -u llvm/lib/Target/Alpha/AlphaTargetMachine.h:1.8 llvm/lib/Target/Alpha/AlphaTargetMachine.h:1.9
--- llvm/lib/Target/Alpha/AlphaTargetMachine.h:1.8 Fri Jul 22 15:52:16 2005
+++ llvm/lib/Target/Alpha/AlphaTargetMachine.h Thu Sep 1 16:38:20 2005
@@ -31,7 +31,8 @@
AlphaJITInfo JITInfo;
public:
- AlphaTargetMachine(const Module &M, IntrinsicLowering *IL);
+ AlphaTargetMachine(const Module &M, IntrinsicLowering *IL,
+ const std::string &FS);
virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; }
virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
More information about the llvm-commits
mailing list