diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2016-06-17 20:41:14 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2016-06-17 20:41:14 +0000 |
commit | 1afc1de4064a73efc04b91ecb2c3dda7e6bb9bef (patch) | |
tree | bbe3e14eee29672ee0006c6c55435d9e181748b9 /llvm/lib/CodeGen/ParallelCG.cpp | |
parent | 11582c59d799a651db12b47dd690a02204439ed5 (diff) | |
download | bcm5719-llvm-1afc1de4064a73efc04b91ecb2c3dda7e6bb9bef.tar.gz bcm5719-llvm-1afc1de4064a73efc04b91ecb2c3dda7e6bb9bef.zip |
Apply another batch of fixes from clang-tidy's performance-unnecessary-value-param.
Contains some manual fixes. No functionality change intended.
llvm-svn: 273047
Diffstat (limited to 'llvm/lib/CodeGen/ParallelCG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ParallelCG.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/ParallelCG.cpp b/llvm/lib/CodeGen/ParallelCG.cpp index 96a0f64794b..ccdaec1bc18 100644 --- a/llvm/lib/CodeGen/ParallelCG.cpp +++ b/llvm/lib/CodeGen/ParallelCG.cpp @@ -25,10 +25,9 @@ using namespace llvm; -static void -codegen(Module *M, llvm::raw_pwrite_stream &OS, - std::function<std::unique_ptr<TargetMachine>()> TMFactory, - TargetMachine::CodeGenFileType FileType) { +static void codegen(Module *M, llvm::raw_pwrite_stream &OS, + function_ref<std::unique_ptr<TargetMachine>()> TMFactory, + TargetMachine::CodeGenFileType FileType) { std::unique_ptr<TargetMachine> TM = TMFactory(); legacy::PassManager CodeGenPasses; if (TM->addPassesToEmitFile(CodeGenPasses, OS, FileType)) |