aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/LiveVariables.h
diff options
context:
space:
mode:
authorJakub Staszak <kubastaszak@gmail.com>2013-03-18 23:45:45 +0000
committerJakub Staszak <kubastaszak@gmail.com>2013-03-18 23:45:45 +0000
commitf31034db8c12197d00b3e356e1d2a702c2339d49 (patch)
tree7ff64790041dabf918239d366c1e7493a92b2d1c /include/llvm/CodeGen/LiveVariables.h
parentc2248b0e7895446cccf934b57c6aa3aa712e20d1 (diff)
downloadexternal_llvm-f31034db8c12197d00b3e356e1d2a702c2339d49.zip
external_llvm-f31034db8c12197d00b3e356e1d2a702c2339d49.tar.gz
external_llvm-f31034db8c12197d00b3e356e1d2a702c2339d49.tar.bz2
Move #include of BitVector from .h to .cpp file.
Also remove unneeded #include and forward declaration. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177357 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/LiveVariables.h')
-rw-r--r--include/llvm/CodeGen/LiveVariables.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/LiveVariables.h b/include/llvm/CodeGen/LiveVariables.h
index 3c5ed92..6628fd2 100644
--- a/include/llvm/CodeGen/LiveVariables.h
+++ b/include/llvm/CodeGen/LiveVariables.h
@@ -29,21 +29,19 @@
#ifndef LLVM_CODEGEN_LIVEVARIABLES_H
#define LLVM_CODEGEN_LIVEVARIABLES_H
-#include "llvm/ADT/BitVector.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/IndexedMap.h"
#include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/SparseBitVector.h"
-#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineFunctionPass.h"
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/Target/TargetRegisterInfo.h"
namespace llvm {
+class MachineBasicBlock;
class MachineRegisterInfo;
-class TargetRegisterInfo;
class LiveVariables : public MachineFunctionPass {
public: