view Paper/source/fastcall_.c @ 4:9adf0d4a6033

add some file
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Fri, 18 Nov 2011 10:08:31 +0900
parents
children
line wrap: on
line source

1 | case RID_CbC_CODE:
2 |   if (!typespec_ok)
3 |     goto out;
4 |   attrs_ok = true;
5 |   seen_type = true;
6 |   if (c_dialect_objc ())
7 |     parser->objc_need_raw_identifier = true;
8 |   t.kind = ctsk_resword;
9 |   t.spec = c_parser_peek_token (parser)->value;
10 |   declspecs_add_type (loc, specs, t);
11 |   if(!TARGET_64BIT) {
12 |     attrs = build_tree_list (get_identifier("fastcall"), NULL_TREE);
13 |     declspecs_add_attrs(specs, attrs);
14 |   }
15 |   c_parser_consume_token (parser);
16 |   break;
17 |