From 59910f3daa2b9100538c5c6d86f8110cd42acc3c Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Mon, 3 Oct 2016 14:59:34 -0400 Subject: [PATCH 03/20] 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 1619765..831825e 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 @@ -6554,6 +6555,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