Mercurial > hg > CbC > CbC_gcc
annotate gcc/cbc-tree-debug.c @ 22:0eb6cac880f0
add cbc example of quicksort.
author | kent <kent@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 13 Oct 2009 17:15:58 +0900 |
parents | 959d4c8c8abc |
children | 2476ed92181e |
rev | line source |
---|---|
17 | 1 #include "config.h" |
2 #include "system.h" | |
3 #include "coretypes.h" | |
4 #include "tm.h" | |
5 #include "tree.h" | |
6 #include "c-tree.h" | |
7 | |
8 | |
9 tree | |
21 | 10 _TREE_TYPE (tree t) |
17 | 11 { |
12 return TREE_TYPE (t); | |
13 } | |
14 | |
15 enum tree_code | |
21 | 16 _TREE_CODE (tree t) |
17 | 17 { |
18 return TREE_CODE (t); | |
19 } | |
20 | |
21 tree | |
21 | 22 _TREE_CHAIN (tree t) |
17 | 23 { |
24 return TREE_CHAIN (t); | |
25 } | |
21 | 26 |
27 tree | |
28 _DECL_NAME (tree t) | |
29 { | |
30 return DECL_NAME (t); | |
31 } |