]> granicus.if.org Git - clang/commitdiff
Wrap code for builtin_assume_aligned at 80 col.NFC
authorKristina Brooks <notstina@gmail.com>
Sun, 24 Feb 2019 17:57:33 +0000 (17:57 +0000)
committerKristina Brooks <notstina@gmail.com>
Sun, 24 Feb 2019 17:57:33 +0000 (17:57 +0000)
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

lib/CodeGen/CGBuiltin.cpp

index 38de4e07d45a4b007dc8ddd6d7ae12b972cefff3..a36e0803dfafa4564f254d53f2ecbe3e9a7b7ea6 100644 (file)
@@ -2006,7 +2006,8 @@ RValue CodeGenFunction::EmitBuiltinExpr(const GlobalDecl GD, unsigned BuiltinID,
     ConstantInt *AlignmentCI = cast<ConstantInt>(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);
   }