diff options
| author | 2025-10-09 20:10:34 +0200 | |
|---|---|---|
| committer | 2025-10-09 20:10:34 +0200 | |
| commit | ba05bc9089248fc92a2fa12bace04c7f63649b9a (patch) | |
| tree | 9669be6a2fcf645735bb8e49a76da5e4e95c9d28 /intrin.c | |
| parent | 9df18e9b384a56902ef1517bc269b8c345149e12 (diff) | |
compound literals
Diffstat (limited to 'intrin.c')
| -rw-r--r-- | intrin.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -69,8 +69,9 @@ lowerintrin(struct function *fn) else abi0_call(fn, ins, blk, &i); vinit(&args, argsbuf, arraylength(argsbuf)); - } else if (ins->op != Omove) assert(args.n == 0); + } } + assert(args.n == 0); } while ((blk = blk->lnext) != fn->entry); } |