Index: src/IceTargetLowering.cpp |
diff --git a/src/IceTargetLowering.cpp b/src/IceTargetLowering.cpp |
index c6e445e2683d32086f439fee93d0e71172b09ae6..1ec89f0338d54ab3c28f1a56f5db95c2271de03d 100644 |
--- a/src/IceTargetLowering.cpp |
+++ b/src/IceTargetLowering.cpp |
@@ -18,6 +18,7 @@ |
#include "IceTargetLowering.h" |
+#include "IceBitVector.h" |
#include "IceCfg.h" // setError() |
#include "IceCfgNode.h" |
#include "IceGlobalContext.h" |
@@ -543,7 +544,7 @@ void TargetLowering::getVarStackSlotParams( |
uint32_t *SpillAreaAlignmentBytes, uint32_t *LocalsSlotsAlignmentBytes, |
std::function<bool(Variable *)> TargetVarHook) { |
const VariablesMetadata *VMetadata = Func->getVMetadata(); |
- llvm::BitVector IsVarReferenced(Func->getNumVariables()); |
+ BitVector IsVarReferenced(Func->getNumVariables()); |
for (CfgNode *Node : Func->getNodes()) { |
for (Inst &Instr : Node->getInsts()) { |
if (Instr.isDeleted()) |