Files
c3c/test/test_suite/compile_time/compile_time_array_bug.c3t
Christoffer Lerno 2439405e70 - $foreach "()" replaced by trailing ":" $foreach ($x, $y : $foo) -> $foreach $x, $y : $foo:
- `$for` "()" replaced by trailing ":" `$for (var $x = 0; $x < FOO; $x++)` -> `$for var $x = 0; $x < FOO; $x++:`
- `$switch` "()" replaced by trailing ":" `$switch ($Type)` -> `$switch $Type:`
- Empty `$switch` requires trailing ":" `$switch` -> `$switch:`
2025-03-04 16:13:47 +01:00

25 lines
596 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