Wrap to 80 columns. No behavior change.

llvm-svn: 214047
This commit is contained in:
Nico Weber 2014-07-27 04:09:29 +00:00
parent 3a2d6a3096
commit 21ad7e5243
1 changed files with 3 additions and 4 deletions

View File

@ -2364,10 +2364,9 @@ Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S,
!IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV)) !IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV))
Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName(); Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName();
ObjCIvarRefExpr *Result = new (Context) ObjCIvarRefExpr(IV, IV->getType(), ObjCIvarRefExpr *Result = new (Context)
Loc, IV->getLocation(), ObjCIvarRefExpr(IV, IV->getType(), Loc, IV->getLocation(),
SelfExpr.get(), SelfExpr.get(), true, true);
true, true);
if (getLangOpts().ObjCAutoRefCount) { if (getLangOpts().ObjCAutoRefCount) {
if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) { if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) {