Skip to content

Commit 02dbc85

Browse files
arsenmlamb-j
authored andcommitted
comgr: Fix missing field initializer warning
Change-Id: Ic03ab3e1683b1d6557b41f8310a2460ba665cdf4
1 parent d75c6fa commit 02dbc85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

amd/comgr/src/comgr-symbolizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ amd_comgr_status_t Symbolizer::symbolize(uint64_t Address, bool IsCode,
102102
std::string Result;
103103
llvm::raw_string_ostream OS(Result);
104104
llvm::symbolize::PrinterConfig Config = getDefaultPrinterConfig();
105-
llvm::symbolize::Request Request{"", Address};
105+
llvm::symbolize::Request Request{"", Address, ""};
106106
auto Printer = std::make_unique<llvm::symbolize::LLVMPrinter>(OS, symbolize_error_handler(OS), Config);
107107

108108
if (IsCode) {

0 commit comments

Comments
 (0)