summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/Spiller.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-05-19 17:50:18 +0000
committerBill Wendling <isanbard@gmail.com>2009-05-19 17:50:18 +0000
commita8705a95a6571ddc694603fe4e3d9352ca4b1800 (patch)
tree50d98aff8667cadcda458510caa259c1deb22315 /llvm/lib/CodeGen/Spiller.h
parent960910a159f79ce3b42c9bb3998849694251a979 (diff)
downloadbcm5719-llvm-a8705a95a6571ddc694603fe4e3d9352ca4b1800.tar.gz
bcm5719-llvm-a8705a95a6571ddc694603fe4e3d9352ca4b1800.zip
Fix to compile on VS2008.
llvm-svn: 72112
Diffstat (limited to 'llvm/lib/CodeGen/Spiller.h')
-rw-r--r--llvm/lib/CodeGen/Spiller.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/Spiller.h b/llvm/lib/CodeGen/Spiller.h
index f17a0b55a07..12506fe4dec 100644
--- a/llvm/lib/CodeGen/Spiller.h
+++ b/llvm/lib/CodeGen/Spiller.h
@@ -13,6 +13,7 @@
#include <vector>
namespace llvm {
+ struct LiveInterval;
/// Spiller interface.
///
@@ -21,7 +22,7 @@ namespace llvm {
class Spiller {
public:
virtual ~Spiller() = 0;
- virtual std::vector<class LiveInterval*> spill(class LiveInterval *li) = 0;
+ virtual std::vector<LiveInterval*> spill(class LiveInterval *li) = 0;
};
/// Create and return a spiller object, as specified on the command line.
OpenPOWER on IntegriCloud