diff options
Diffstat (limited to 'lib/Transforms/LevelRaise.cpp')
-rw-r--r-- | lib/Transforms/LevelRaise.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/LevelRaise.cpp b/lib/Transforms/LevelRaise.cpp index 41a47749f7..8b5e253950 100644 --- a/lib/Transforms/LevelRaise.cpp +++ b/lib/Transforms/LevelRaise.cpp @@ -370,7 +370,8 @@ bool RPR::PeepholeOptimize(BasicBlock *BB, BasicBlock::iterator &BI) { // Build the index vector, full of all zeros std::vector<Value*> Indices; - Indices.push_back(ConstantSInt::get(Type::LongTy, 0)); + + Indices.push_back(ConstantSInt::get(Type::LongTy, 0)); // FIXME, PR82 while (CurCTy && !isa<PointerType>(CurCTy)) { const Type *IdxType; if (const StructType *CurSTy = dyn_cast<StructType>(CurCTy)) { |