From dae4baf0b704d1b566bbff41774f220b00bf365b Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Mon, 15 Feb 2016 03:21:26 -0800 Subject: clean up more reg ifdefs --- gcc/explow.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'gcc/explow.c') diff --git a/gcc/explow.c b/gcc/explow.c index 9be9e79..e9f32ec 100755 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -399,11 +399,7 @@ copy_all_regs (x) { if (GET_CODE (x) == REG) { - if (REGNO (x) != FRAME_POINTER_REGNUM -#if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM - && REGNO (x) != HARD_FRAME_POINTER_REGNUM -#endif - ) + if (REGNO (x) != FRAME_POINTER_REGNUM) x = copy_to_reg (x); } else if (GET_CODE (x) == MEM) -- cgit v1.2.3