Re: contributor guidelines

2023-12-05 Thread Bruno Haible
Hi Jonathan, Thank you for your answer. > No, don't configure in the source directory: > https://gcc.gnu.org/wiki/FAQ#configure OK. > And it hasn't been necessary to run 'make bootstrap' for years, just > running 'make' does exactly the same thing now. Actually, "make" works better than "make

Re: NOP_EXPR vs. CONVERT_EXPR

2023-12-05 Thread Richard Biener via Gcc
On Tue, Dec 5, 2023 at 3:54 PM Alexander Monakov via Gcc wrote: > > Greetings, > > the definitions for NOP_EXPR and CONVERT_EXPR in tree.def, having survived > all the way from 1992, currently say: > > /* Represents a conversion of type of a value. >All conversions, including implicit

NOP_EXPR vs. CONVERT_EXPR

2023-12-05 Thread Alexander Monakov via Gcc
Greetings, the definitions for NOP_EXPR and CONVERT_EXPR in tree.def, having survived all the way from 1992, currently say: /* Represents a conversion of type of a value. All conversions, including implicit ones, must be represented by CONVERT_EXPR or NOP_EXPR nodes. */ DEF

Re: Debugging the tree object constructed by cp_parser

2023-12-05 Thread Stan Srednyak via Gcc
Hi David, Thanks for your suggestion. I really appreciate it. But I would like to modify the trees as they are constructed. So the first step is to understand how to print them out ( using debug_tree() or even printf()) from inside cp_parser.cc. I think it is a reasonable question: where are the