diff options
author | Kristina Brooks <notstina@gmail.com> | 2019-02-24 17:57:33 +0000 |
---|---|---|
committer | Kristina Brooks <notstina@gmail.com> | 2019-02-24 17:57:33 +0000 |
commit | 716cbfb4640fe44f12dc7288da51efebeb55f64d (patch) | |
tree | 21d7ca1ec36c43569be9494a2aff330bb76f6e91 /clang/lib/CodeGen/CGBuiltin.cpp | |
parent | 26aa702463aca99c98218d41940f37a5a10f02e9 (diff) | |
download | bcm5719-llvm-716cbfb4640fe44f12dc7288da51efebeb55f64d.tar.gz bcm5719-llvm-716cbfb4640fe44f12dc7288da51efebeb55f64d.zip |
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.
llvm-svn: 354751
Diffstat (limited to 'clang/lib/CodeGen/CGBuiltin.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGBuiltin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGBuiltin.cpp b/clang/lib/CodeGen/CGBuiltin.cpp index 38de4e07d45..a36e0803dfa 100644 --- a/clang/lib/CodeGen/CGBuiltin.cpp +++ b/clang/lib/CodeGen/CGBuiltin.cpp @@ -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); } |