diff options
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 0a4e2ca..d22facb 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -40,6 +40,7 @@ along with GCC; see the file COPYING3. If not see #include "params.h" #include "tree-inline.h" #include "value-prof.h" +#include "target.h" /* Verify that there is exactly single jump instruction since last and attach REG_BR_PROB note specifying probability. @@ -1873,6 +1874,8 @@ tree_expand_cfg (void) /* Mark arrays indexed with non-constant indices with TREE_ADDRESSABLE. */ discover_nonconstant_array_refs (); + targetm.expand_to_rtl_hook (); + /* Expand the variables recorded during gimple lowering. */ expand_used_vars (); |