comparison gcc/c-parser.c @ 82:895e19fe9c22

modify calls.c
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Fri, 11 Nov 2011 02:35:16 +0900
parents d8bf5c8fdea8
children a5786e986ad2
comparison
equal deleted inserted replaced
80:d8bf5c8fdea8 82:895e19fe9c22
2111 /* 2111 /*
2112 attrs = get_identifier("fastcall"); 2112 attrs = get_identifier("fastcall");
2113 attrs = build_tree_list(attrs, NULL_TREE); 2113 attrs = build_tree_list(attrs, NULL_TREE);
2114 declspecs_add_attrs(specs, attrs); 2114 declspecs_add_attrs(specs, attrs);
2115 */ 2115 */
2116 attrs = build_tree_list (get_identifier("fastcall"), NULL_TREE); 2116 if(!TARGET_64BIT) {
2117 /*attrs = build_tree_list (get_identifier("noreturn"), attrs);*/ 2117 attrs = build_tree_list (get_identifier("fastcall"), NULL_TREE);
2118 declspecs_add_attrs(specs, attrs); 2118 /*attrs = build_tree_list (get_identifier("noreturn"), attrs);*/
2119 declspecs_add_attrs(specs, attrs);
2120 }
2119 2121
2120 c_parser_consume_token (parser); 2122 c_parser_consume_token (parser);
2121 break; 2123 break;
2122 #endif 2124 #endif
2123 case RID_ENUM: 2125 case RID_ENUM: