Files
c3c/test/test_suite/functions/static_vars.c3t
2022-07-20 12:22:03 +02:00

24 lines
456 B
C

module foo;
fn int test()
{
static int x = 1;
tlocal int y = 2;
x++;
return x;
}
/* #expect: foo.ll
@"test$x" = internal unnamed_addr global i32 1, align 4
@"test$y" = internal thread_local(localdynamic) unnamed_addr global i32 2, align 4
define i32 @foo_test() #0 {
entry:
%0 = load i32, i32* @"test$x", align 4
%add = add i32 %0, 1
store i32 %add, i32* @"test$x", align 4
%1 = load i32, i32* @"test$x", align 4
ret i32 %1
}