From f5408fe484495ee4efbdd709c8a2c2fdbbbdb328 Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Sat, 16 May 2009 07:57:57 +0000 Subject: Reflow some comments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71937 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CodeGenFunction.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lib/CodeGen/CodeGenFunction.cpp') diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp index c74f8344cc..04661fca47 100644 --- a/lib/CodeGen/CodeGenFunction.cpp +++ b/lib/CodeGen/CodeGenFunction.cpp @@ -66,8 +66,8 @@ const llvm::Type *CodeGenFunction::ConvertType(QualType T) { } bool CodeGenFunction::hasAggregateLLVMType(QualType T) { - // FIXME: Use positive checks instead of negative ones to be more - // robust in the face of extension. + // FIXME: Use positive checks instead of negative ones to be more robust in + // the face of extension. return !T->hasPointerRepresentation() &&!T->isRealType() && !T->isVoidType() && !T->isVectorType() && !T->isFunctionType() && !T->isBlockPointerType(); @@ -105,9 +105,9 @@ void CodeGenFunction::EmitReturnBlock() { } } - // FIXME: We are at an unreachable point, there is no reason to emit - // the block unless it has uses. However, we still need a place to - // put the debug region.end for now. + // FIXME: We are at an unreachable point, there is no reason to emit the block + // unless it has uses. However, we still need a place to put the debug + // region.end for now. EmitBlock(ReturnBlock); } @@ -663,8 +663,8 @@ void CodeGenFunction::AddBranchFixup(llvm::BranchInst *BI) assert(!CleanupEntries.empty() && "Trying to add branch fixup without cleanup block!"); - // FIXME: We could be more clever here and check if there's already a - // branch fixup for this destination and recycle it. + // FIXME: We could be more clever here and check if there's already a branch + // fixup for this destination and recycle it. CleanupEntries.back().BranchFixups.push_back(BI); } -- cgit v1.2.3-18-g5258