diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-02-23 07:55:03 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-02-23 07:55:03 -0500 |
commit | bb52566d02853db04f30376a44379d6c3f187ad5 (patch) | |
tree | c8b79e80097469419b12471f5018a4013b63ff84 | |
parent | d08e39677b66b243744fa38e407d79b59912bd20 (diff) | |
download | gcc-bb52566d02853db04f30376a44379d6c3f187ad5.zip gcc-bb52566d02853db04f30376a44379d6c3f187ad5.tar.gz gcc-bb52566d02853db04f30376a44379d6c3f187ad5.tar.bz2 |
(MODIFY_ASSEMBLER_NAME, VALID_MACHINE_DECL_ATTRIBUTES): Deleted.
From-SVN: r9050
-rw-r--r-- | gcc/config/winnt/win-nt.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/gcc/config/winnt/win-nt.h b/gcc/config/winnt/win-nt.h index c1209ac..f6a20ef 100644 --- a/gcc/config/winnt/win-nt.h +++ b/gcc/config/winnt/win-nt.h @@ -33,32 +33,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. fprintf (FILE, ".global\t__fltused\n"); \ } while (0) - -/* Value is the previously stored DECL_ASSEMBLER_NAME with a suffix - consisting of an atsign (@) followed by string of digits that represents - the number of bytes of arguments passed to the function, if it has the - attribute STDCALL. */ - -#define MODIFY_ASSEMBLER_NAME(fndecl) \ - TREE_CODE (fndecl) == FUNCTION_DECL \ - ? \ - chain_member_value (get_identifier ("stdcall"), \ - DECL_MACHINE_ATTRIBUTES (fndecl)) \ - ? \ - (tree) gen_stdcall_suffix (fndecl) \ - : (tree) DECL_ASSEMBLER_NAME (fndecl) \ - : (tree) DECL_ASSEMBLER_NAME (fndecl) - -/* Value is 1 if the declaration has either of the attributes: CDECL or - STDCALL and 0 otherwise */ - -#define VALID_MACHINE_DECL_ATTRIBUTE(decl,attr,name) \ - ((TREE_CODE(decl) == FUNCTION_DECL) \ - || (TREE_CODE(decl) == FIELD_DECL) \ - || (TREE_CODE(decl) == TYPE_DECL)) \ - && ((get_identifier("stdcall") == name) \ - || (get_identifier("cdecl") == name)) - #undef STARTFILE_SPEC #define STARTFILE_SPEC "" |