diff options
| author | Samuel Antao <sfantao@us.ibm.com> | 2016-11-03 15:41:50 +0000 |
|---|---|---|
| committer | Samuel Antao <sfantao@us.ibm.com> | 2016-11-03 15:41:50 +0000 |
| commit | 7108bf36b6cbdab368a8799069a861e8c5b290f0 (patch) | |
| tree | 0a67dc459b28500eb739ceefb9566c2bf79d3a11 /clang/lib/Driver/Tools.cpp | |
| parent | e1dc38773144c9ced611568dc00bac524b4a4dfd (diff) | |
| download | bcm5719-llvm-7108bf36b6cbdab368a8799069a861e8c5b290f0.tar.gz bcm5719-llvm-7108bf36b6cbdab368a8799069a861e8c5b290f0.zip | |
Rename the version of ConstructJob for multiple outputs to ConstructJobMultipleOutputs.
It was causing trouble with the GCC bots.
llvm-svn: 285925
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
| -rw-r--r-- | clang/lib/Driver/Tools.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index 02799380ab5..386b1d3bd2c 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -7133,11 +7133,10 @@ void OffloadBundler::ConstructJob(Compilation &C, const JobAction &JA, CmdArgs, None)); } -void OffloadBundler::ConstructJob(Compilation &C, const JobAction &JA, - const InputInfoList &Outputs, - const InputInfoList &Inputs, - const llvm::opt::ArgList &TCArgs, - const char *LinkingOutput) const { +void OffloadBundler::ConstructJobMultipleOutputs( + Compilation &C, const JobAction &JA, const InputInfoList &Outputs, + const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs, + const char *LinkingOutput) const { // The version with multiple outputs is expected to refer to a unbundling job. auto &UA = cast<OffloadUnbundlingJobAction>(JA); |

