From 82198e776761a6f3f16373d7be2be432b0e76854 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 27 Aug 2025 23:04:36 +0900 Subject: fix: stack pointer is not aligned to 8 byte boundary --- src/preprocess.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/preprocess.c') diff --git a/src/preprocess.c b/src/preprocess.c index df688f1..8b52f7c 100644 --- a/src/preprocess.c +++ b/src/preprocess.c @@ -969,10 +969,7 @@ static BOOL preprocess_if_group_or_elif_group(Preprocessor* pp, int directive_to } static BOOL preprocess_if_group(Preprocessor* pp, int directive_token_pos) { - // TODO: this code does not work for some reason. - // return preprocess_if_group_or_elif_group(pp, directive_token_pos, FALSE); - int x = 0; - return preprocess_if_group_or_elif_group(pp, directive_token_pos, x); + return preprocess_if_group_or_elif_group(pp, directive_token_pos, FALSE); } static BOOL preprocess_elif_group(Preprocessor* pp, int directive_token_pos, BOOL did_process) { -- cgit v1.2.3-70-g09d2