From: Chad Rosier Date: Mon, 7 Nov 2016 16:28:04 +0000 (+0000) Subject: Fix 80-column violations. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e670c883874ccafcd30ec06b97764b7a923eaf48;p=llvm Fix 80-column violations. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286117 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/FunctionAttrs.cpp b/lib/Transforms/IPO/FunctionAttrs.cpp index 0fde10752b5..402a66552c2 100644 --- a/lib/Transforms/IPO/FunctionAttrs.cpp +++ b/lib/Transforms/IPO/FunctionAttrs.cpp @@ -1095,7 +1095,8 @@ namespace { struct PostOrderFunctionAttrsLegacyPass : public CallGraphSCCPass { static char ID; // Pass identification, replacement for typeid PostOrderFunctionAttrsLegacyPass() : CallGraphSCCPass(ID) { - initializePostOrderFunctionAttrsLegacyPassPass(*PassRegistry::getPassRegistry()); + initializePostOrderFunctionAttrsLegacyPassPass( + *PassRegistry::getPassRegistry()); } bool runOnSCC(CallGraphSCC &SCC) override; @@ -1117,7 +1118,9 @@ INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass) INITIALIZE_PASS_END(PostOrderFunctionAttrsLegacyPass, "functionattrs", "Deduce function attributes", false, false) -Pass *llvm::createPostOrderFunctionAttrsLegacyPass() { return new PostOrderFunctionAttrsLegacyPass(); } +Pass *llvm::createPostOrderFunctionAttrsLegacyPass() { + return new PostOrderFunctionAttrsLegacyPass(); +} template static bool runImpl(CallGraphSCC &SCC, AARGetterT AARGetter) { @@ -1179,7 +1182,8 @@ namespace { struct ReversePostOrderFunctionAttrsLegacyPass : public ModulePass { static char ID; // Pass identification, replacement for typeid ReversePostOrderFunctionAttrsLegacyPass() : ModulePass(ID) { - initializeReversePostOrderFunctionAttrsLegacyPassPass(*PassRegistry::getPassRegistry()); + initializeReversePostOrderFunctionAttrsLegacyPassPass( + *PassRegistry::getPassRegistry()); } bool runOnModule(Module &M) override;