summaryrefslogtreecommitdiff
path: root/lib/CodeGen/Spiller.h
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-10-25 17:27:30 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-10-25 17:27:30 +0000
commitd3b48954141847af12919a5bf4ea8623d19fc1d5 (patch)
treec73d08333a2d57cd45964813561cd6cbf8912589 /lib/CodeGen/Spiller.h
parenta2041f18078e60cdd4f1cf3064c7dd9466c227e6 (diff)
downloadllvm-d3b48954141847af12919a5bf4ea8623d19fc1d5.tar.gz
llvm-d3b48954141847af12919a5bf4ea8623d19fc1d5.tar.bz2
llvm-d3b48954141847af12919a5bf4ea8623d19fc1d5.tar.xz
In which I learn how to forward declare template classes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117272 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Spiller.h')
-rw-r--r--lib/CodeGen/Spiller.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/Spiller.h b/lib/CodeGen/Spiller.h
index 59bc0ec6ae..b0a5c41266 100644
--- a/lib/CodeGen/Spiller.h
+++ b/lib/CodeGen/Spiller.h
@@ -10,14 +10,13 @@
#ifndef LLVM_CODEGEN_SPILLER_H
#define LLVM_CODEGEN_SPILLER_H
-#include "llvm/ADT/SmallVector.h"
-
namespace llvm {
class LiveInterval;
class MachineFunction;
class MachineFunctionPass;
class SlotIndex;
+ template <typename T> class SmallVectorImpl;
class VirtRegMap;
/// Spiller interface.