comparison gcc/cbc-tree-debug.c @ 25:2476ed92181e

modified machine description of i386 for support indirect sibcall attributed fastcall.
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Tue, 27 Oct 2009 16:04:06 +0900
parents 959d4c8c8abc
children
comparison
equal deleted inserted replaced
24:f37d7058d1ce 25:2476ed92181e
27 tree 27 tree
28 _DECL_NAME (tree t) 28 _DECL_NAME (tree t)
29 { 29 {
30 return DECL_NAME (t); 30 return DECL_NAME (t);
31 } 31 }
32
33 tree
34 _CALL_EXPR_FN (tree t)
35 {
36 return CALL_EXPR_FN (t);
37 }
38
39 tree
40 _CALL_EXPR_ARGS (tree t)
41 {
42 return CALL_EXPR_ARGS (t);
43 }
44
45 tree
46 _CALL_EXPR_ARG (tree t, int i)
47 {
48 return CALL_EXPR_ARG (t, i);
49 }