aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTohei Ichikawa <ichikawa.tohei.desu@gmail.com>2025-11-09 22:02:37 -0500
committerTohei Ichikawa <ichikawa.tohei.desu@gmail.com>2025-11-09 22:02:37 -0500
commit411a1638278810f7ac70d80b3e90bb0b9b852c59 (patch)
tree885332628eee7ca60b803d14304c6ac2a3955fda
parentd6b5a3139a4cb42bfda53a05d87de0a03f91b9e0 (diff)
Add link to relevant PR to test case
-rw-r--r--tests/internal/test_anonymous_globals.odin3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/internal/test_anonymous_globals.odin b/tests/internal/test_anonymous_globals.odin
index dd59ee376..177f31599 100644
--- a/tests/internal/test_anonymous_globals.odin
+++ b/tests/internal/test_anonymous_globals.odin
@@ -4,6 +4,7 @@ import "core:testing"
+// https://github.com/odin-lang/Odin/pull/5908
@(test)
test_address_of_anonymous_global :: proc(t: ^testing.T) {
// This loop exists so that we do more computation with stack memory
@@ -32,6 +33,8 @@ Inner_Struct :: struct{
+// https://github.com/odin-lang/Odin/pull/5908
+//
// Regression test for commit f1e3977cf94dfc0457f05d499cc280d8e1329086 where a larger anonymous global is needed to trigger
// the bug
@(test)