mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 01:20:51 +03:00
14 lines
248 B
D
14 lines
248 B
D
module inputs.inlinables_asm;
|
|
|
|
import ldc.attributes;
|
|
|
|
extern (C): // simplify mangling for easier function name matching
|
|
|
|
pragma(inline, true) extern (C) void naked_asm_func()
|
|
{
|
|
asm pure nothrow @nogc
|
|
{
|
|
naked;
|
|
nop;
|
|
}
|
|
}
|