Fix codegen bugs

This commit is contained in:
Abdelrahman Said
2025-04-16 08:13:31 +01:00
parent cfa8094260
commit 63acdd1336
5 changed files with 9 additions and 9 deletions

View File

@@ -4,14 +4,14 @@
}}
if (index == 0) {{
output = wapp_{T}_list_pop_front(list);
output = wapp_{Tlower}_list_pop_front(list);
goto RETURN_{Tupper}_LIST_REMOVE;
}} else if (index == list->node_count) {{
output = wapp_{T}_list_pop_back(list);
output = wapp_{Tlower}_list_pop_back(list);
goto RETURN_{Tupper}_LIST_REMOVE;
}}
output = wapp_{T}_list_get(list, index);
output = wapp_{Tlower}_list_get(list, index);
if (!output) {{
goto RETURN_{Tupper}_LIST_REMOVE;
}}