diff options
Diffstat (limited to 'gcc/df-scan.c')
-rw-r--r-- | gcc/df-scan.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gcc/df-scan.c b/gcc/df-scan.c index 7179051f0b8..de2ae82853a 100644 --- a/gcc/df-scan.c +++ b/gcc/df-scan.c @@ -3733,14 +3733,8 @@ df_get_entry_block_def_set (bitmap entry_block_defs) bitmap_clear (entry_block_defs); for (i = 0; i < FIRST_PSEUDO_REGISTER; i++) - { - if (FUNCTION_ARG_REGNO_P (i)) -#ifdef INCOMING_REGNO - bitmap_set_bit (entry_block_defs, INCOMING_REGNO (i)); -#else - bitmap_set_bit (entry_block_defs, i); -#endif - } + if (FUNCTION_ARG_REGNO_P (i)) + bitmap_set_bit (entry_block_defs, INCOMING_REGNO (i)); /* The always important stack pointer. */ bitmap_set_bit (entry_block_defs, STACK_POINTER_REGNUM); |