We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1a3ca5 commit f553bd8Copy full SHA for f553bd8
core/iwasm/compilation/aot_emit_aot_file.c
@@ -48,7 +48,7 @@ typedef struct AOTSymbolList {
48
} AOTSymbolList;
49
50
/* AOT object data */
51
-typedef struct AOTObjectData {
+struct AOTObjectData {
52
AOTCompContext *comp_ctx;
53
54
LLVMMemoryBufferRef mem_buf;
@@ -82,7 +82,7 @@ typedef struct AOTObjectData {
82
const char *stack_sizes_section_name;
83
uint32 stack_sizes_offset;
84
uint32 *stack_sizes;
85
-} AOTObjectData;
+};
86
87
#if 0
88
static void dump_buf(uint8 *buf, uint32 size, char *title)
0 commit comments