From 7683806ea3a16e14e8b7c0c9878f5211b4c8baa5 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 19 May 2009 17:50:18 +0000 Subject: Fix to compile on VS2008. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72112 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/Spiller.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/CodeGen/Spiller.h') diff --git a/lib/CodeGen/Spiller.h b/lib/CodeGen/Spiller.h index f17a0b55a0..12506fe4de 100644 --- a/lib/CodeGen/Spiller.h +++ b/lib/CodeGen/Spiller.h @@ -13,6 +13,7 @@ #include namespace llvm { + struct LiveInterval; /// Spiller interface. /// @@ -21,7 +22,7 @@ namespace llvm { class Spiller { public: virtual ~Spiller() = 0; - virtual std::vector spill(class LiveInterval *li) = 0; + virtual std::vector spill(class LiveInterval *li) = 0; }; /// Create and return a spiller object, as specified on the command line. -- cgit v1.2.3