URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
Compare Revisions
- This comparison shows the changes necessary to convert path
/openrisc/trunk
- from Rev 514 to Rev 515
- ↔ Reverse comparison
Rev 514 → Rev 515
/gnu-src/gcc-4.5.1/gcc/ChangeLog.or32
2,6 → 2,14
|
* BASE_VER: Updated for gcc-4.5.1-or32-1.0rc3. |
|
2011-03-22 Joern Rennecke <joern.rennecke@embecosm.com> |
|
* config/or32/or32.h (LEGITIMATE_CONSTANT_P): Allow VOIDmode |
CONST_DOUBLE. |
* config/or32/or32.md (movsi_insn_big): Enable splitting of CONST_INT. |
(movdi): Now a define_insn_and_split. |
* config/or32/or32.c (or32_output_move_double): Abort for CONST_INT. |
|
2011-02-17 Joern Rennecke <joern.rennecke@embecosm.com> |
|
* gcc.c (do_spec_1) <%*>: Don't append a space unless the next |
/gnu-src/gcc-4.5.1/gcc/config/or32/or32.h
850,7 → 850,8
/* Is this suitable for an immediate operand. |
|
JPB 1-Sep-10: Is this correct. We can only do 16-bit immediates directly. */ |
#define LEGITIMATE_CONSTANT_P(x) (GET_CODE(x) != CONST_DOUBLE) |
#define LEGITIMATE_CONSTANT_P(x) \ |
(GET_CODE(x) != CONST_DOUBLE || GET_MODE (x) == VOIDmode) |
|
/* Specify the machine mode that this machine uses for the index in the |
tablejump instruction. */ |