SWDEV-380857 - Remove space in "Linker Program" used to set Comgr object name
Not a required change, but it does make dealing with temporary files generated
by Comgr easier.
Change-Id: I9c43138dd2a6c4fea965b57fbce7a087ab2bbd28
[ROCm/clr commit: 1171518b97]
This commit is contained in:
committed by
Jacob Lambert
parent
6ab03957bb
commit
911dbabdff
@@ -286,7 +286,7 @@ hiprtcResult hiprtcLinkCreate(unsigned int num_options, hiprtcJIT_option* option
|
||||
}
|
||||
}
|
||||
|
||||
std::string name("Linker Program");
|
||||
std::string name("LinkerProgram");
|
||||
hiprtc::RTCLinkProgram* rtc_link_prog_ptr = new hiprtc::RTCLinkProgram(name);
|
||||
if (!rtc_link_prog_ptr->AddLinkerOptions(num_options, options_ptr, options_vals_pptr)) {
|
||||
HIPRTC_RETURN(HIPRTC_ERROR_INVALID_OPTION);
|
||||
|
||||
@@ -613,7 +613,7 @@ bool RTCLinkProgram::AddLinkerFile(std::string file_path, hiprtcJITInputType inp
|
||||
|
||||
file_stream.close();
|
||||
|
||||
std::string link_file_name("Linker Program");
|
||||
std::string link_file_name("LinkerProgram");
|
||||
|
||||
return AddLinkerDataImpl(link_file_info, input_type, link_file_name);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user