From fc5ab8a14c20a8d29c2028771f1ce75b5e4e2632 Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Wed, 28 Feb 2024 15:10:47 -0500 Subject: [PATCH] Clarify comment explaining how `referenced` works --- include/asm/fstack.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asm/fstack.hpp b/include/asm/fstack.hpp index 183d9bad..0f8077ae 100644 --- a/include/asm/fstack.hpp +++ b/include/asm/fstack.hpp @@ -20,7 +20,7 @@ struct FileStackNode { // Line at which the parent context was exited; meaningless for the root level uint32_t lineNo; - bool referenced; // If referenced, don't free! + bool referenced; // If referenced by a Symbol, Section, or Patch's `src`, don't `delete`! uint32_t ID; // Set only if referenced: ID within the object file, -1 if not output yet enum FileStackNodeType type;