diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2016-11-07 16:28:04 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2016-11-07 16:28:04 +0000 |
commit | 611b73b1f9ef121c968f4bcf9c67675a2059a1d7 (patch) | |
tree | 4991326c8cc9cbaa420312a205f10411b4f14ef9 /llvm/lib/Transforms/IPO/FunctionAttrs.cpp | |
parent | 3949cb61a5dabe2bdd84d91e4b26e2f242a48c4d (diff) | |
download | bcm5719-llvm-611b73b1f9ef121c968f4bcf9c67675a2059a1d7.tar.gz bcm5719-llvm-611b73b1f9ef121c968f4bcf9c67675a2059a1d7.zip |
Fix 80-column violations. NFC.
llvm-svn: 286117
Diffstat (limited to 'llvm/lib/Transforms/IPO/FunctionAttrs.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/FunctionAttrs.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/IPO/FunctionAttrs.cpp b/llvm/lib/Transforms/IPO/FunctionAttrs.cpp index 0fde10752b5..402a66552c2 100644 --- a/llvm/lib/Transforms/IPO/FunctionAttrs.cpp +++ b/llvm/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 <typename AARGetterT> 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; |