diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-06-18 10:34:00 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-06-18 10:34:00 +0000 |
commit | dd19c0114de5024e36e466b69d98a3762ea862a9 (patch) | |
tree | 62b48c7d3c96f3b038073507e0654165d0e6392d | |
parent | 4ab4a8e63a5a99face7d7b523529d3805385c93a (diff) | |
download | bcm5719-llvm-dd19c0114de5024e36e466b69d98a3762ea862a9.tar.gz bcm5719-llvm-dd19c0114de5024e36e466b69d98a3762ea862a9.zip |
80 cols.
llvm-svn: 133345
-rw-r--r-- | clang/lib/CodeGen/CGExpr.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/CGExpr.cpp b/clang/lib/CodeGen/CGExpr.cpp index 3e845d2cdca..0e68c3e2f34 100644 --- a/clang/lib/CodeGen/CGExpr.cpp +++ b/clang/lib/CodeGen/CGExpr.cpp @@ -2108,15 +2108,15 @@ RValue CodeGenFunction::EmitCallExpr(const CallExpr *E, DestroyedType->isObjCLifetimeType() && (DestroyedType.getObjCLifetime() == Qualifiers::OCL_Strong || DestroyedType.getObjCLifetime() == Qualifiers::OCL_Weak)) { - // Automatic Reference Counting: - // If the pseudo-expression names a retainable object with weak or strong - // lifetime, the object shall be released. + // Automatic Reference Counting: + // If the pseudo-expression names a retainable object with weak or + // strong lifetime, the object shall be released. bool isNonGC = false; Expr *BaseExpr = PseudoDtor->getBase(); llvm::Value *BaseValue = NULL; Qualifiers BaseQuals; - // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar. + // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar. if (PseudoDtor->isArrow()) { BaseValue = EmitScalarExpr(BaseExpr); const PointerType *PTy = BaseExpr->getType()->getAs<PointerType>(); @@ -2138,7 +2138,7 @@ RValue CodeGenFunction::EmitCallExpr(const CallExpr *E, case Qualifiers::OCL_Strong: EmitARCRelease(Builder.CreateLoad(BaseValue, - PseudoDtor->getDestroyedType().isVolatileQualified()), + PseudoDtor->getDestroyedType().isVolatileQualified()), /*precise*/ true); break; |