/usr/include/d/ldc/llvmasm.di is in libphobos2-ldc-dev 1:0.17.1-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | module ldc.llvmasm;
struct __asmtuple_t(T...)
{
T v;
}
pragma(LDC_inline_asm)
{
void __asm()(const(char)[] asmcode, const(char)[] constraints, ...) pure nothrow @nogc;
T __asm(T)(const(char)[] asmcode, const(char)[] constraints, ...) pure nothrow @nogc;
template __asmtuple(T...)
{
__asmtuple_t!(T) __asmtuple(const(char)[] asmcode, const(char)[] constraints, ...);
}
}
|