gcc.builtins

Declarations are automatically created by the compiler. All declarations start with "__builtin_". Refer to builtins.def in the GCC source for a list of functions. Not all of the functions are supported.

In addition to built-in functions, the following types are defined.

___builtin_va_listThe target's va_list type
___builtin_ClongThe D equivalent of the target's C "long" type
___builtin_CulongThe D equivalent of the target's C "unsigned long" type
___builtin_machine_intSigned word-sized integer
___builtin_machine_uintUnsigned word-sized integer
___builtin_pointer_intSigned pointer-sized integer
___builtin_pointer_uintUnsigned pointer-sized integer

Meta