svn commit: r222999 -
projects/llvm-ia64/contrib/llvm/lib/Target/IA64
Marcel Moolenaar
marcel at FreeBSD.org
Sat Jun 11 22:18:07 UTC 2011
Author: marcel
Date: Sat Jun 11 22:18:07 2011
New Revision: 222999
URL: http://svn.freebsd.org/changeset/base/222999
Log:
Create the IA64MachineFunctionInfo class. We don't have any target-
specific information for each MachineFunction yet, but it's good to
have it around. I'm sure I need it soon enough.
Added:
projects/llvm-ia64/contrib/llvm/lib/Target/IA64/IA64MachineFunctionInfo.h
Added: projects/llvm-ia64/contrib/llvm/lib/Target/IA64/IA64MachineFunctionInfo.h
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ projects/llvm-ia64/contrib/llvm/lib/Target/IA64/IA64MachineFunctionInfo.h Sat Jun 11 22:18:07 2011 (r222999)
@@ -0,0 +1,18 @@
+#ifndef LLVM_TARGET_IA64_MACHINEFUNCTIONINFO_H
+#define LLVM_TARGET_IA64_MACHINEFUNCTIONINFO_H
+
+#include "llvm/CodeGen/MachineFunction.h"
+
+namespace llvm {
+
+ class IA64MachineFunctionInfo : public MachineFunctionInfo {
+ // Nothing yet.
+ public:
+ IA64MachineFunctionInfo() {}
+
+ explicit IA64MachineFunctionInfo(MachineFunction &MF) {}
+ };
+
+} // namespace llvm
+
+#endif // LLVM_TARGET_IA64_MACHINEFUNCTIONINFO_H
More information about the svn-src-projects
mailing list