Mercurial > hg > CbC > CbC_gcc
view gcc/cbc-tree.h @ 72:20c18990c3e4
merge gcc/c-typeck.c
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 21 Aug 2011 22:22:32 +0900 |
parents | 60c1b2f8487a |
children | 6381ea127240 |
line wrap: on
line source
//#define CbC_PRETENDED_STACK_SIZE 256 #define CbC_PRETENDED_STACK_SIZE 1024 /* Set if the fntype is code segment on CbC language. */ // flag3,5,6 has been used by c-tree.h #define CbC_IS_CODE_SEGMENT(TYPE) TYPE_LANG_FLAG_5 ( FUNCTION_TYPE_CHECK(TYPE)) /* Set if the CALL_EXPR NODE is goto statement on CbC language. */ #define CbC_IS_CbC_GOTO(NODE) TREE_LANG_FLAG_5 (CALL_EXPR_CHECK(NODE)) #define CALL_EXPR_CbC_GOTO(NODE) TREE_LANG_FLAG_5 (CALL_EXPR_CHECK(NODE)) extern tree cbc_return_f; extern tree cbc_env; extern location_t cbc_return;