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:
Jacob Lambert
2023-05-05 21:36:11 -07:00
committed by Jacob Lambert
parent 6ab03957bb
commit 911dbabdff
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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);
}