From 1def2e3c6687e8f27388bc828d63e24f99d131ba Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 13 Jul 2026 16:36:45 +0100 Subject: [PATCH] Improve docs a little --- core/rexcode/ir/module.odin | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/rexcode/ir/module.odin b/core/rexcode/ir/module.odin index 5764608b9..4cf8682bd 100644 --- a/core/rexcode/ir/module.odin +++ b/core/rexcode/ir/module.odin @@ -39,7 +39,10 @@ package rexcode_ir // shared *vocabulary*, not an implementation. // Per-IR dataflow discipline. WASM = STACK; SPIR-V / LLVM / AIR / DXIL = SSA. -Dataflow :: enum u8 { STACK, SSA } +Dataflow :: enum u8 { + STACK, // WASM + SSA, // SPIR-V / LLVM / AIR / DXIL +} // ----------------------------------------------------------------------------- // Operand (generalizes isa.Operand)