Deleted Added
full compact
CGCXX.cpp (199482) CGCXX.cpp (199512)
1//===--- CGDecl.cpp - Emit LLVM Code for declarations ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 589 unchanged lines hidden (view full) ---

598
599 // Finally, branch back up to the condition for the next iteration.
600 EmitBranch(CondBlock);
601
602 // Emit the fall-through block.
603 EmitBlock(AfterFor, true);
604}
605
1//===--- CGDecl.cpp - Emit LLVM Code for declarations ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 589 unchanged lines hidden (view full) ---

598
599 // Finally, branch back up to the condition for the next iteration.
600 EmitBranch(CondBlock);
601
602 // Emit the fall-through block.
603 EmitBlock(AfterFor, true);
604}
605
606/// GenerateCXXAggrDestructorHelper - Generates a helper function which when invoked,
607/// calls the default destructor on array elements in reverse order of
606/// GenerateCXXAggrDestructorHelper - Generates a helper function which when
607/// invoked, calls the default destructor on array elements in reverse order of
608/// construction.
609llvm::Constant *
610CodeGenFunction::GenerateCXXAggrDestructorHelper(const CXXDestructorDecl *D,
611 const ArrayType *Array,
612 llvm::Value *This) {
613 static int UniqueCount;
614 FunctionArgList Args;
615 ImplicitParamDecl *Dst =

--- 1145 unchanged lines hidden ---
608/// construction.
609llvm::Constant *
610CodeGenFunction::GenerateCXXAggrDestructorHelper(const CXXDestructorDecl *D,
611 const ArrayType *Array,
612 llvm::Value *This) {
613 static int UniqueCount;
614 FunctionArgList Args;
615 ImplicitParamDecl *Dst =

--- 1145 unchanged lines hidden ---