@@ -54,11 +54,11 @@ void tools::PScpu::addProfileRTArgs(const ToolChain &TC, const ArgList &Args,
54
54
Args, " --dependent-lib=" , PSTC.getProfileRTLibName (), " " ));
55
55
}
56
56
57
- void tools::PScpu::Assemble ::ConstructJob (Compilation &C, const JobAction &JA,
58
- const InputInfo &Output,
59
- const InputInfoList &Inputs,
60
- const ArgList &Args,
61
- const char *LinkingOutput) const {
57
+ void tools::PScpu::Assembler ::ConstructJob (Compilation &C, const JobAction &JA,
58
+ const InputInfo &Output,
59
+ const InputInfoList &Inputs,
60
+ const ArgList &Args,
61
+ const char *LinkingOutput) const {
62
62
auto &TC = static_cast <const toolchains::PS4PS5Base &>(getToolChain ());
63
63
claimNoWarnArgs (Args);
64
64
ArgStringList CmdArgs;
@@ -117,11 +117,11 @@ void toolchains::PS5CPU::addSanitizerArgs(const ArgList &Args,
117
117
CmdArgs.push_back (arg (" SceThreadSanitizer_nosubmission_stub_weak" ));
118
118
}
119
119
120
- void tools::PScpu::Link ::ConstructJob (Compilation &C, const JobAction &JA,
121
- const InputInfo &Output,
122
- const InputInfoList &Inputs,
123
- const ArgList &Args,
124
- const char *LinkingOutput) const {
120
+ void tools::PScpu::Linker ::ConstructJob (Compilation &C, const JobAction &JA,
121
+ const InputInfo &Output,
122
+ const InputInfoList &Inputs,
123
+ const ArgList &Args,
124
+ const char *LinkingOutput) const {
125
125
auto &TC = static_cast <const toolchains::PS4PS5Base &>(getToolChain ());
126
126
const Driver &D = TC.getDriver ();
127
127
ArgStringList CmdArgs;
@@ -245,7 +245,7 @@ toolchains::PS4PS5Base::PS4PS5Base(const Driver &D, const llvm::Triple &Triple,
245
245
}
246
246
247
247
Tool *toolchains::PS4CPU::buildAssembler () const {
248
- return new tools::PScpu::Assemble (*this );
248
+ return new tools::PScpu::Assembler (*this );
249
249
}
250
250
251
251
Tool *toolchains::PS5CPU::buildAssembler () const {
@@ -255,7 +255,7 @@ Tool *toolchains::PS5CPU::buildAssembler() const {
255
255
}
256
256
257
257
Tool *toolchains::PS4PS5Base::buildLinker () const {
258
- return new tools::PScpu::Link (*this );
258
+ return new tools::PScpu::Linker (*this );
259
259
}
260
260
261
261
SanitizerMask toolchains::PS4PS5Base::getSupportedSanitizers () const {
0 commit comments