From: Kristina Brooks Date: Sun, 24 Feb 2019 17:57:33 +0000 (+0000) Subject: Wrap code for builtin_assume_aligned at 80 col.NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=494950800fcac54ba82bf7a4cbf798e9ff8d687e;p=clang Wrap code for builtin_assume_aligned at 80 col.NFC Minor style fix to avoid going over 80 cols in handling of case for Builtin::BI__builtin_assume_aligned. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@354751 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGBuiltin.cpp b/lib/CodeGen/CGBuiltin.cpp index 38de4e07d4..a36e0803df 100644 --- a/lib/CodeGen/CGBuiltin.cpp +++ b/lib/CodeGen/CGBuiltin.cpp @@ -2006,7 +2006,8 @@ RValue CodeGenFunction::EmitBuiltinExpr(const GlobalDecl GD, unsigned BuiltinID, ConstantInt *AlignmentCI = cast(AlignmentValue); unsigned Alignment = (unsigned)AlignmentCI->getZExtValue(); - EmitAlignmentAssumption(PtrValue, Ptr, /*The expr loc is sufficient.*/ SourceLocation(), + EmitAlignmentAssumption(PtrValue, Ptr, + /*The expr loc is sufficient.*/ SourceLocation(), Alignment, OffsetValue); return RValue::get(PtrValue); }