diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-01-13 01:36:56 +0000 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-01-13 01:36:56 +0000 |
commit | 9d985413ce2b60a1a8cf001913ee8dac81c03aac (patch) | |
tree | 348ab31884f2dd89d285e06c42e656e35835ff38 /compiler_and_linker/unsorted/CInline.c | |
parent | 3a6db389b250439a0cce6b45ef1424a5728f5d18 (diff) | |
download | MWCC-9d985413ce2b60a1a8cf001913ee8dac81c03aac.tar.gz MWCC-9d985413ce2b60a1a8cf001913ee8dac81c03aac.zip |
fix lots more issues, add endian conversions to ObjGenMachO, add 64-bit kludge to Switch.c
Diffstat (limited to 'compiler_and_linker/unsorted/CInline.c')
-rw-r--r-- | compiler_and_linker/unsorted/CInline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler_and_linker/unsorted/CInline.c b/compiler_and_linker/unsorted/CInline.c index 7d3c2ef..4cd3c4b 100644 --- a/compiler_and_linker/unsorted/CInline.c +++ b/compiler_and_linker/unsorted/CInline.c @@ -2598,7 +2598,7 @@ static Statement *CInline_InlineFunctionStatement(Statement *stmt, Boolean *chan } *changed = 1; - CInline_ExpandStatements(object, stmt, funcdata, stmt->expr, label, NULL, 0); + return CInline_ExpandStatements(object, stmt, funcdata, stmt->expr, label, NULL, 0); } static Statement *CInline_ExtractInlineFunction(Statement *stmt) { |