projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04746ea
)
Fix to compile on VS2008.
author
Bill Wendling
<isanbard@gmail.com>
Tue, 19 May 2009 17:50:18 +0000
(17:50 +0000)
committer
Bill Wendling
<isanbard@gmail.com>
Tue, 19 May 2009 17:50:18 +0000
(17:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72112
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/Spiller.h
patch
|
blob
|
history
diff --git
a/lib/CodeGen/Spiller.h
b/lib/CodeGen/Spiller.h
index f17a0b55a072340b4296df6719aad316bcf1a8f5..12506fe4dec88a961b02c22d48af1f1f5bc5de4c 100644
(file)
--- a/
lib/CodeGen/Spiller.h
+++ b/
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.