mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
15 lines
188 B
C
15 lines
188 B
C
// #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 }
|