diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-17 21:49:25 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-17 21:49:25 +0200 |
commit | 17c7dbd9cec96862384c4323a0e36eb0558b580d (patch) | |
tree | 38edfb87113bc51bca0a6e97b085c30a60cd81e4 /src/lower.c | |
parent | f9c5985ce715cb2b353d87a19fed71d9904b60ed (diff) | |
download | fwd-17c7dbd9cec96862384c4323a0e36eb0558b580d.tar.gz fwd-17c7dbd9cec96862384c4323a0e36eb0558b580d.zip |
fix some total moves
Diffstat (limited to 'src/lower.c')
-rw-r--r-- | src/lower.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lower.c b/src/lower.c index 5578319..b683e0b 100644 --- a/src/lower.c +++ b/src/lower.c @@ -309,6 +309,12 @@ static int lower_mark_moved(struct state *state, struct ast *moves) if (move->k != AST_ID) continue; + if (is_trivially_copyable(move->t)) + continue; + + if (is_callable(move->t)) + continue; + printf("%s_owned = false;\n", id_str(move)); indent(state); } @@ -450,6 +456,9 @@ static int lower_block_vars(struct state *state, struct ast *block) if (is_trivially_copyable(def->t)) continue; + if (is_callable(def->t)) + continue; + if (!populated) { indent(state); printf("[[maybe_unused]] bool %s_owned = true", |