Hi Gaby, bootstrap is currently broken:
/scratch/Gcc/svn-dirs/trunk/gcc/c/c-objc-common.c: In function ‘bool c_tree_printer(pretty_printer*, text_info*, const char*, int, bool, bool, bool)’: /scratch/Gcc/svn-dirs/trunk/gcc/c/c-objc-common.c:123:31: error: ‘pp_c_expression’ was not declared in this scope
make[2]: *** [c/c-objc-common.o] Error 1 If I don't hear from you I'm going to commit as obvious the below. Thanks! Paolo. ////////////////////////
Index: c-objc-common.c =================================================================== --- c-objc-common.c (revision 201987) +++ c-objc-common.c (working copy) @@ -120,7 +120,7 @@ c_tree_printer (pretty_printer *pp, text_info *tex t = DECL_DEBUG_EXPR (t); if (!DECL_P (t)) { - pp_c_expression (cpp, t); + pp_expression (cpp, t); return true; } }