summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lib/Target/Nios2/Nios2FrameLowering.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/llvm/lib/Target/Nios2/Nios2FrameLowering.cpp')
-rw-r--r--gnu/llvm/lib/Target/Nios2/Nios2FrameLowering.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/llvm/lib/Target/Nios2/Nios2FrameLowering.cpp b/gnu/llvm/lib/Target/Nios2/Nios2FrameLowering.cpp
new file mode 100644
index 00000000000..6fb28a6fd63
--- /dev/null
+++ b/gnu/llvm/lib/Target/Nios2/Nios2FrameLowering.cpp
@@ -0,0 +1,27 @@
+//===-- Nios2FrameLowering.cpp - Nios2 Frame Information ------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file contains the Nios2 implementation of TargetFrameLowering class.
+//
+//===----------------------------------------------------------------------===//
+
+#include "Nios2FrameLowering.h"
+
+#include "Nios2Subtarget.h"
+#include "llvm/CodeGen/MachineFunction.h"
+
+using namespace llvm;
+
+bool Nios2FrameLowering::hasFP(const MachineFunction &MF) const { return true; }
+
+void Nios2FrameLowering::emitPrologue(MachineFunction &MF,
+ MachineBasicBlock &MBB) const {}
+
+void Nios2FrameLowering::emitEpilogue(MachineFunction &MF,
+ MachineBasicBlock &MBB) const {}