diff options
| author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-10-25 17:27:30 +0000 |
|---|---|---|
| committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-10-25 17:27:30 +0000 |
| commit | 912db6d9d031b820bd72745ac359769daa7f2e23 (patch) | |
| tree | 02422bad8e06568ecb665e346183f381e3feeb4d /llvm/lib/CodeGen | |
| parent | b62d15c24e941540ffc46caed98f7b4568efc592 (diff) | |
| download | bcm5719-llvm-912db6d9d031b820bd72745ac359769daa7f2e23.tar.gz bcm5719-llvm-912db6d9d031b820bd72745ac359769daa7f2e23.zip | |
In which I learn how to forward declare template classes.
llvm-svn: 117272
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/Spiller.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/Spiller.h b/llvm/lib/CodeGen/Spiller.h index 59bc0ec6ae7..b0a5c412668 100644 --- a/llvm/lib/CodeGen/Spiller.h +++ b/llvm/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. |

