mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
16 lines
257 B
Plaintext
16 lines
257 B
Plaintext
// #target: macos-x64
|
|
|
|
fn void test(int i) @naked
|
|
{
|
|
|
|
}
|
|
|
|
/* #expect: naked_function.ll
|
|
|
|
define void @naked_function.test(i32 %0) #0 {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { naked nounwind uwtable "no-trapping-math"="true" "stack-protector-buffer-size"="8" }
|