function.c (free_after_compilation): Clear PROP_cfg in f->curr_properties.
2015-07-07 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> * function.c (free_after_compilation): Clear PROP_cfg in f->curr_properties. testsuite/ * gcc.dg/dx-test.c: New test-case. From-SVN: r225508
This commit is contained in:
parent
3244f4cd04
commit
b11f11a197
4 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2015-07-07 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
|
||||
|
||||
* function.c (free_after_compilation): Clear PROP_cfg in f->curr_properties.
|
||||
|
||||
2015-07-07 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* tree-ssa-propagate.c (add_ssa_edge): Dump what edge list we
|
||||
|
|
|
@ -216,6 +216,7 @@ free_after_compilation (struct function *f)
|
|||
f->eh = NULL;
|
||||
f->machine = NULL;
|
||||
f->cfg = NULL;
|
||||
f->curr_properties &= ~PROP_cfg;
|
||||
|
||||
regno_reg_rtx = NULL;
|
||||
}
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2015-07-07 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
|
||||
|
||||
* gcc.dg/dx-test.c: New test-case.
|
||||
|
||||
2015-07-07 Andre Vehreschild <vehre@gmx.de>
|
||||
|
||||
PR fortran/66578
|
||||
|
|
5
gcc/testsuite/gcc.dg/dx-test.c
Normal file
5
gcc/testsuite/gcc.dg/dx-test.c
Normal file
|
@ -0,0 +1,5 @@
|
|||
/* { dg-do compile } */
|
||||
/* { dg-options "-dx" } */
|
||||
|
||||
void f(void)
|
||||
{}
|
Loading…
Add table
Reference in a new issue