aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.cpp
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-05-16 07:57:57 +0000
committerMike Stump <mrs@apple.com>2009-05-16 07:57:57 +0000
commitf5408fe484495ee4efbdd709c8a2c2fdbbbdb328 (patch)
treeb09dd07e36daa3a9cb86a0c6c0ab33144deb0c20 /lib/CodeGen/CodeGenFunction.cpp
parent390b4cc8b45a05612349269ef08faab3e4688f06 (diff)
Reflow some comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r--lib/CodeGen/CodeGenFunction.cpp14
1 files changed, 7 insertions, 7 deletions
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);
}