Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Jun 2011 22:18:07 +0000 (UTC)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r222999 - projects/llvm-ia64/contrib/llvm/lib/Target/IA64
Message-ID:  <201106112218.p5BMI7Bq096542@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201106112218.p5BMI7Bq096542>