• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Nix flake for RPython interpreters


Commit MetaInfo

修订版f528ed9af6fc755d947d17316af30491e2310795 (tree)
时间2024-06-02 13:21:41
作者Corbin <cds@corb...>
CommiterCorbin

Log Message

bf: Correctly compile empty loops.

They are used as comments in some codebases. In particular, this allows
us to run awib, the infamous self-hosting polyglot Brainfuck compiler.

更改概述

差异

--- a/bf/bf.py
+++ b/bf/bf.py
@@ -121,6 +121,7 @@ def loop(ops):
121121 return rv
122122
123123 def peep(ops):
124+ if not ops: return ops
124125 rv = []
125126 temp = ops[0]
126127 for op in ops[1:]: