aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-10-04 05:09:20 +0000
committerChris Lattner <sabre@nondot.org>2005-10-04 05:09:20 +0000
commitccc8ed7bb5dac74c8ca1aeb2dea4098c56b1f439 (patch)
tree556498769a47859eb2608edeabcaa70b77509c94
parent1aa1972c63fb6b940b11250f7c12bcb368026014 (diff)
Add a forward def
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23621 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/Target.td3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/Target.td b/lib/Target/Target.td
index 8ef76a611c..6eae93a1b0 100644
--- a/lib/Target/Target.td
+++ b/lib/Target/Target.td
@@ -41,8 +41,9 @@ def isVoid : ValueType<0 , 12>; // Produces no value
//===----------------------------------------------------------------------===//
// Register file description - These classes are used to fill in the target
-// description classes in llvm/Target/MRegisterInfo.h
+// description classes.
+class RegisterClass; // Forward def
// Register - You should define one instance of this class for each register
// in the target machine. String n will become the "name" of the register.