summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Skeleton
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Target/Skeleton')
-rw-r--r--llvm/lib/Target/Skeleton/SkeletonTargetMachine.cpp3
-rw-r--r--llvm/lib/Target/Skeleton/SkeletonTargetMachine.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/Target/Skeleton/SkeletonTargetMachine.cpp b/llvm/lib/Target/Skeleton/SkeletonTargetMachine.cpp
index 8b7a8db3003..df27b77010f 100644
--- a/llvm/lib/Target/Skeleton/SkeletonTargetMachine.cpp
+++ b/llvm/lib/Target/Skeleton/SkeletonTargetMachine.cpp
@@ -29,7 +29,8 @@ namespace {
/// SkeletonTargetMachine ctor - Create an ILP32 architecture model
///
SkeletonTargetMachine::SkeletonTargetMachine(const Module &M,
- IntrinsicLowering *IL)
+ IntrinsicLowering *IL,
+ const std::string &FS)
: TargetMachine("Skeleton", IL, true, 4, 4, 4, 4, 4),
FrameInfo(TargetFrameInfo::StackGrowsDown, 8, -4), JITInfo(*this) {
}
diff --git a/llvm/lib/Target/Skeleton/SkeletonTargetMachine.h b/llvm/lib/Target/Skeleton/SkeletonTargetMachine.h
index 0480a6ed8c0..0607b6f943c 100644
--- a/llvm/lib/Target/Skeleton/SkeletonTargetMachine.h
+++ b/llvm/lib/Target/Skeleton/SkeletonTargetMachine.h
@@ -28,7 +28,8 @@ namespace llvm {
TargetFrameInfo FrameInfo;
SkeletonJITInfo JITInfo;
public:
- SkeletonTargetMachine(const Module &M, IntrinsicLowering *IL);
+ SkeletonTargetMachine(const Module &M, IntrinsicLowering *IL,
+ const std::string &FS);
virtual const SkeletonInstrInfo *getInstrInfo() const { return &InstrInfo; }
virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
OpenPOWER on IntegriCloud