From d31e6e6761f2d021ca749b5c0b1b9368b8765ae8 Mon Sep 17 00:00:00 2001 From: Ronald Caesar Date: Thu, 25 Dec 2025 21:24:02 -0400 Subject: [PATCH] docs: Rename phi struct Signed-off-by: Ronald Caesar --- src/IR_DESIGN_DOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IR_DESIGN_DOC.md b/src/IR_DESIGN_DOC.md index 0866352..6d6216b 100644 --- a/src/IR_DESIGN_DOC.md +++ b/src/IR_DESIGN_DOC.md @@ -92,7 +92,7 @@ typedef struct // The length is the number of predecessors of the Basic Block containing this Phi. // We do not store the length here to save space. uint32_t operand_start_index; -} phi_operand_t; +} phi_node_t; // A massive contiguous array storing all operands for all Phis.