Home
last modified time | relevance | path

Searched refs:init_const (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/c/
H A Dc-convert.cc69 c_convert (tree type, tree expr, bool init_const) in c_convert() argument
121 expr = c_fully_fold (expr, init_const, NULL); in c_convert()
179 ret = init_const ? fold_init (ret) : fold (ret); in c_convert()
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-common.cc1756 convert_and_check (location_t loc, tree type, tree expr, bool init_const) in convert_and_check() argument
1768 expr_for_warning = (init_const in convert_and_check()
1780 result = init_const ? convert_init (type, expr) : convert (type, expr); in convert_and_check()
H A DChangeLog682 * c-common.c (convert_and_check): Add argument init_const. Call
683 convert_init if init_const.