diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-12-19 00:05:07 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-12-19 00:05:07 +0000 |
commit | 29b49fc6aaafffa36f729088c02251251751e5dc (patch) | |
tree | f59c74e137360eb856ca58782e6f0bbd8dc34463 | |
parent | 43ea505fb07e303721d92f2b2bdda6e601868523 (diff) |
Forgot forward declaration.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91732 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/SDNodeOrdering.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SDNodeOrdering.h b/include/llvm/CodeGen/SDNodeOrdering.h index 07dd1a776f..264753b651 100644 --- a/include/llvm/CodeGen/SDNodeOrdering.h +++ b/include/llvm/CodeGen/SDNodeOrdering.h @@ -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 |