URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
Compare Revisions
- This comparison shows the changes necessary to convert path
/openrisc/trunk/gnu-src/gcc-4.5.1/gcc/config/or32
- from Rev 333 to Rev 377
- ↔ Reverse comparison
Rev 333 → Rev 377
/or32.c
1,4 → 1,4
/* Subroutines for insn-output.c for GNU compiler. OpenRISC 1000 version. |
ssh o/* Subroutines for insn-output.c for GNU compiler. OpenRISC 1000 version. |
Copyright (C) 1987, 1992, 1997, 1999, 2000, 2001, 2002, 2003, 2004, |
2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc |
Copyright (C) 2010 Embecosm Limited |
1779,7 → 1779,7
|
/* If valid register... */ |
if ((GET_CODE(reg) == REG) |
&& or32_regnum_ok_for_base_p (INTVAL (reg), strict)) |
&& or32_regnum_ok_for_base_p (REGNO (reg), strict)) |
{ |
rtx offset = XEXP(x,1); |
|
1794,7 → 1794,7
/* Addresses consisting of just a register are OK. They can be built into |
addresses using an offset of zero (and an offset of four if double |
word). */ |
if (GET_CODE(x) == REG && or32_regnum_ok_for_base_p( INTVAL (x), strict)) |
if (GET_CODE(x) == REG && or32_regnum_ok_for_base_p( REGNO (x), strict)) |
{ |
return 1; |
} |