mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 03:51:18 +00:00
16 lines
343 B
Plaintext
16 lines
343 B
Plaintext
// #target: macos-x64
|
|
module test;
|
|
|
|
int z @section("__TEXT,__custoection");
|
|
int w @section("__TEXT,__custoection");
|
|
|
|
fn void main()
|
|
{
|
|
int a = z + w;
|
|
}
|
|
|
|
/* #expect: test.ll
|
|
|
|
@test.z = local_unnamed_addr global i32 0, section "__TEXT,__custoection", align 4
|
|
@test.w = local_unnamed_addr global i32 0, section "__TEXT,__custoection", align 4
|