[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[COMMITTED] pkl-ast.c: do not mark comp_stmt as frameless in
From: |
Jose E. Marchesi |
Subject: |
[COMMITTED] pkl-ast.c: do not mark comp_stmt as frameless in |
Date: |
Sat, 21 Sep 2024 03:05:27 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
The transl pass takes care of that now.
2024-09-21 Jose E. Marchesi <jemarch@gnu.org>
* libpoke/pkl-ast.c (pkl_ast_handle_bconc_ass_stmt): There is no
more need to mark compound statement as frameless.
---
ChangeLog | 5 +++++
libpoke/pkl-ast.c | 1 -
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index fdcf49e6..30cf37aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-09-21 Jose E. Marchesi <jemarch@gnu.org>
+
+ * libpoke/pkl-ast.c (pkl_ast_handle_bconc_ass_stmt): There is no
+ more need to mark compound statement as frameless.
+
2024-09-21 Jose E. Marchesi <jemarch@gnu.org>
* libpoke/pkl-gen.c (struct pkl_gen_payload): Remove pasm2 and
diff --git a/libpoke/pkl-ast.c b/libpoke/pkl-ast.c
index f016ba20..add26fba 100644
--- a/libpoke/pkl-ast.c
+++ b/libpoke/pkl-ast.c
@@ -3198,7 +3198,6 @@ pkl_ast_handle_bconc_ass_stmt (pkl_ast ast, pkl_ast_node
ass_stmt)
assert (PKL_AST_TYPE_CODE (ass_stmt_exp_type) == PKL_TYPE_INTEGRAL);
- PKL_AST_COMP_STMT_FRAMELESS_P (comp_stmt) = 1;
(void) pkl_ast_handle_bconc_ass_stmt_1 (ast, comp_stmt,
PKL_AST_ASS_STMT_LVALUE (ass_stmt),
ass_stmt_exp,
--
2.30.2
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [COMMITTED] pkl-ast.c: do not mark comp_stmt as frameless in,
Jose E. Marchesi <=