diff options
author | YamaArashi <shadow962@live.com> | 2016-02-15 03:21:26 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-15 03:21:26 -0800 |
commit | dae4baf0b704d1b566bbff41774f220b00bf365b (patch) | |
tree | 690def17e9d822f5d62f0d8dbbc266202bce8e01 /gcc/explow.c | |
parent | ffa585754d6f1cc8eae38ae213b1b1dc6a74d7d3 (diff) |
clean up more reg ifdefs
Diffstat (limited to 'gcc/explow.c')
-rwxr-xr-x | gcc/explow.c | 6 |
1 files changed, 1 insertions, 5 deletions
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) |