Mercurial > hg > Papers > 2011 > nobu-prosym
view Paper/source/fastcall_.c @ 61:2c543a47737b
modify explanation of fastcall
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 26 Dec 2011 11:18:47 +0900 |
parents | 9adf0d4a6033 |
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 |