From fe74183564e0d9236ac2daee5e3db08905b66350 Mon Sep 17 00:00:00 2001 From: Fraser Cormack Date: Thu, 17 Mar 2022 15:33:52 +0000 Subject: [PATCH] [Coroutines][NFC] Format line to 80 cols --- llvm/lib/Transforms/Coroutines/CoroSplit.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/lib/Transforms/Coroutines/CoroSplit.cpp b/llvm/lib/Transforms/Coroutines/CoroSplit.cpp index 790ff4d..a9e224f 100644 --- a/llvm/lib/Transforms/Coroutines/CoroSplit.cpp +++ b/llvm/lib/Transforms/Coroutines/CoroSplit.cpp @@ -934,7 +934,8 @@ void CoroCloner::create() { case coro::ABI::Switch: // Bootstrap attributes by copying function attributes from the // original function. This should include optimization settings and so on. - NewAttrs = NewAttrs.addFnAttributes(Context, AttrBuilder(Context, OrigAttrs.getFnAttrs())); + NewAttrs = NewAttrs.addFnAttributes( + Context, AttrBuilder(Context, OrigAttrs.getFnAttrs())); addFramePointerAttrs(NewAttrs, Context, 0, Shape.FrameSize, Shape.FrameAlign); -- 2.7.4