From 596e625e62f1b1342c94fdd1529ef55e99cad763 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Mon, 3 Oct 2016 14:59:34 -0400 Subject: [PATCH 01/28] FIXME: add call to print_rtx_function to 'expand' --- gcc/cfgexpand.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 430ad38..3d62c92 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -74,6 +74,7 @@ along with GCC; see the file COPYING3. If not see #include "builtins.h" #include "tree-chkp.h" #include "rtl-chkp.h" +#include "print-rtl.h" /* Some systems use __main in a way incompatible with its use in gcc, in these cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to @@ -6555,6 +6556,9 @@ pass_expand::execute (function *fun) timevar_pop (TV_POST_EXPAND); + if (0) + print_rtx_function (stderr, fun, true); + return 0; } -- 1.8.5.3