Files
c3c/test/test_suite/compile_time/compile_time_array_bug.c3t
Christoffer Lerno acc4a900f5 - New const enum declaration syntax.
- New enum associated value syntax.
2026-02-12 14:43:56 +01:00

25 lines
608 B
Plaintext

// #target: macos-x64
module test;
enum TokenType: char (char token) {
ERROR { 0 },
INCP { '>' },
DECP { '>' },
LOOPS { '[' },
}
macro populate_token_table() {
TokenType[256] $tmp = {};
$foreach $tokenType: TokenType.values:
$tmp[$tokenType.token] = $tokenType;
$endforeach
return $tmp;
}
const TokenType[256] TOKEN_TABLE = populate_token_table();
/* #expect: test.ll
@test.TOKEN_TABLE = local_unnamed_addr constant { i8, [61 x i8], i8, [28 x i8], i8, [164 x i8] } { i8 0, [61 x i8] zeroinitializer, i8 2, [28 x i8] zeroinitializer, i8 3, [164 x i8] zeroinitializer }, align 16