diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-12-11 08:58:29 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-12-11 08:58:29 -0500 |
commit | 3a24ee17420c5f774104ff1c1c7c931a566cde05 (patch) | |
tree | 1922dea2291e986a46db8b4d2eb46fe7f8e8e108 /gcc | |
parent | 334c4f0f01b3213c8237982eac1f290c46157bf6 (diff) | |
download | gcc-3a24ee17420c5f774104ff1c1c7c931a566cde05.zip gcc-3a24ee17420c5f774104ff1c1c7c931a566cde05.tar.gz gcc-3a24ee17420c5f774104ff1c1c7c931a566cde05.tar.bz2 |
(i386_return_pops_args): Don't test for IDENTIFIER_NODE.
From-SVN: r13276
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/i386.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 975915f..e069cb4 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -489,9 +489,6 @@ i386_return_pops_args (fundecl, funtype, size) { int rtd = TARGET_RTD; - if (TREE_CODE (funtype) == IDENTIFIER_NODE) - return 0; - /* Cdecl functions override -mrtd, and never pop the stack */ if (!lookup_attribute ("cdecl", TYPE_ATTRIBUTES (funtype))) { |