1 /* GDC -- D front-end for GCC
2 Copyright (C) 2004 David Friedman
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 Declarations are automatically created by the compiler. All
22 declarations start with "__builtin_". Refer to _builtins.def in the
23 GCC source for a list of functions. Not all of the functions are
26 In addition to built-in functions, the following types are defined.
29 $(TR $(TD ___builtin_va_list) $(TD The target's va_list type ))
30 $(TR $(TD ___builtin_Clong ) $(TD The D equivalent of the target's
32 $(TR $(TD ___builtin_Culong ) $(TD The D equivalent of the target's
33 C "unsigned long" type ))
34 $(TR $(TD ___builtin_machine_int ) $(TD Signed word-sized integer ))
35 $(TR $(TD ___builtin_machine_uint) $(TD Unsigned word-sized integer ))
36 $(TR $(TD ___builtin_pointer_int ) $(TD Signed pointer-sized integer ))
37 $(TR $(TD ___builtin_pointer_uint) $(TD Unsigned pointer-sized integer ))