From 8cc075c6a736fdde56ca2da03a868821695765f4 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Sun, 13 Sep 2026 23:33:14 +0200 Subject: Add threadvar section for thread-local variables --- boot/lexer.ll | 3 +++ 1 file changed, 3 insertions(+) (limited to 'boot/lexer.ll') diff --git a/boot/lexer.ll b/boot/lexer.ll index 89eb4ed..1cccd35 100644 --- a/boot/lexer.ll +++ b/boot/lexer.ll @@ -134,6 +134,9 @@ const { var { return yy::parser::make_VAR(this->location); } +threadvar { + return yy::parser::make_THREADVAR(this->location); +} type { return yy::parser::make_TYPE(this->location); } -- cgit v1.2.3