changeset 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents f81c5aa9f14f
children 9d1ff3ae1824
files gcc/c/c-parser.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gcc/c/c-parser.c	Tue Nov 28 21:17:15 2017 +0900
+++ b/gcc/c/c-parser.c	Tue Feb 27 15:01:35 2018 +0900
@@ -2768,11 +2768,12 @@
           t.kind = ctsk_resword;
           t.spec = c_parser_peek_token (parser)->value;
           declspecs_add_type (loc, specs, t);
-
+#ifdef TARGET_64BIT
           if(!TARGET_64BIT) {
             attrs = build_tree_list (get_identifier("fastcall"), NULL_TREE);
             declspecs_add_attrs(loc, specs, attrs);
-      }
+          }
+#endif
 
           c_parser_consume_token (parser);
           break;