[llvm-commits] [llvm] r91732 - /llvm/trunk/include/llvm/CodeGen/SDNodeOrdering.h

Bill Wendling isanbard at gmail.com
Fri Dec 18 16:05:07 PST 2009


Author: void
Date: Fri Dec 18 18:05:07 2009
New Revision: 91732

URL: http://llvm.org/viewvc/llvm-project?rev=91732&view=rev
Log:
Forgot forward declaration.

Modified:
    llvm/trunk/include/llvm/CodeGen/SDNodeOrdering.h

Modified: llvm/trunk/include/llvm/CodeGen/SDNodeOrdering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SDNodeOrdering.h?rev=91732&r1=91731&r2=91732&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SDNodeOrdering.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SDNodeOrdering.h Fri Dec 18 18:05:07 2009
@@ -18,6 +18,8 @@
 
 namespace llvm {
 
+class SDNode;
+
 /// SDNodeOrdering - Maps a unique (monotonically increasing) value to each
 /// SDNode that roughly corresponds to the ordering of the original LLVM
 /// instruction. This is used for turning off scheduling, because we'll forgo





More information about the llvm-commits mailing list