We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17e3bf2 commit 0844245Copy full SHA for 0844245
core/iwasm/compilation/debug/dwarf_extractor.cpp
@@ -152,7 +152,7 @@ dwarf_gen_mock_vm_info(AOTCompContext *comp_ctx)
152
153
comp_unit = LLVMDIBuilderCreateCompileUnit(
154
comp_ctx->debug_builder, LLVMDWARFSourceLanguageC, file_info,
155
- "ant compiler", 12, 0, NULL, 0, 1, NULL, 0, LLVMDWARFEmissionFull, 0, 0,
+ "WAMR AoT compiler", 12, 0, NULL, 0, 1, NULL, 0, LLVMDWARFEmissionFull, 0, 0,
156
0, "/", 1, "", 0);
157
158
LLVMTypeRef ParamTys[] = {
@@ -208,8 +208,8 @@ dwarf_gen_comp_unit_info(const AOTCompContext *comp_ctx)
208
209
210
comp_ctx->debug_builder, LLDB_TO_LLVM_LANG_TYPE(lang_type),
211
- comp_ctx->debug_file, "ant compiler", 12, 0, NULL, 0, 1, NULL, 0,
212
- LLVMDWARFEmissionFull, 0, 0, 0, "/", 1, "", 0);
+ comp_ctx->debug_file, "WAMR AoT compiler", 12, 0, NULL, 0, 1, NULL,
+ 0, LLVMDWARFEmissionFull, 0, 0, 0, "/", 1, "", 0);
213
}
214
return comp_unit;
215
0 commit comments