view gcc/c/cbc-tree.h @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 4e440907fcbf
children
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)))

extern tree cbc_return_f;
extern tree cbc_env;
extern location_t cbc_return;