Fix typo (dwarf) in the codebase (#2367)

In the codebase, the struct and functions were written without "f" for dwarf.
This commit is contained in:
Cengizhan Pasaoglu
2023-07-19 12:58:52 +03:00
committed by GitHub
parent fbcf8c2c60
commit 57abdfdb5c
4 changed files with 22 additions and 22 deletions

View File

@ -43,7 +43,7 @@ typedef WASMType AOTFuncType;
typedef WASMExport AOTExport;
#if WASM_ENABLE_DEBUG_AOT != 0
typedef void *dwar_extractor_handle_t;
typedef void *dwarf_extractor_handle_t;
#endif
typedef enum AOTIntCond {
@ -285,7 +285,7 @@ typedef struct AOTCompData {
WASMModule *wasm_module;
#if WASM_ENABLE_DEBUG_AOT != 0
dwar_extractor_handle_t extractor;
dwarf_extractor_handle_t extractor;
#endif
} AOTCompData;