diff options
Diffstat (limited to 'gcc/tree-vrp.c')
-rw-r--r-- | gcc/tree-vrp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index 099e85a..d8ff9fd 100644 --- a/gcc/tree-vrp.c +++ b/gcc/tree-vrp.c @@ -4518,7 +4518,7 @@ vrp_finalize (void) DON'T KNOW. In the future, it may be worthwhile to propagate probabilities to aid branch prediction. */ -static void +static unsigned int execute_vrp (void) { insert_range_assertions (); @@ -4551,7 +4551,7 @@ execute_vrp (void) update_ssa (TODO_update_ssa); finalize_jump_threads (); - + return 0; } static bool |