diff options
| author | Richard M. Stallman | 2009-03-01 12:42:45 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2009-03-01 12:42:45 +0000 |
| commit | 2f63bba8e16755943ab6c7faa14b47f12b7f86fd (patch) | |
| tree | 1f98404eb2a16a6a6fb58908942ccd242e0cdfee /src | |
| parent | 4f7cb96d1225c5295b1b6cfd08d44cdbdee928a7 (diff) | |
| download | emacs-2f63bba8e16755943ab6c7faa14b47f12b7f86fd.tar.gz emacs-2f63bba8e16755943ab6c7faa14b47f12b7f86fd.zip | |
(DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/m/mips.h | 9 |
2 files changed, 14 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8f8e06650bf..ba9168911a6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2009-03-01 Richard M Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled. | ||
| 4 | |||
| 5 | * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0. | ||
| 6 | |||
| 1 | 2009-02-28 Eli Zaretskii <eliz@gnu.org> | 7 | 2009-02-28 Eli Zaretskii <eliz@gnu.org> |
| 2 | 8 | ||
| 3 | * coding.c (decode_coding_utf_8, decode_coding_utf_16) | 9 | * coding.c (decode_coding_utf_8, decode_coding_utf_16) |
diff --git a/src/m/mips.h b/src/m/mips.h index 09487b4596e..b361c9aa010 100644 --- a/src/m/mips.h +++ b/src/m/mips.h | |||
| @@ -50,9 +50,13 @@ NOTE-END */ | |||
| 50 | 50 | ||
| 51 | #define TEXT_START 0x00400000 | 51 | #define TEXT_START 0x00400000 |
| 52 | #define DATA_START 0x10000000 | 52 | #define DATA_START 0x10000000 |
| 53 | #define DATA_SEG_BITS 0x10000000 | ||
| 54 | 53 | ||
| 55 | 54 | ||
| 55 | #if 0 /* These definitions were advantageous when not using | ||
| 56 | USE_LSB_TAG. With that, they get ignored but cause errors. */ | ||
| 57 | |||
| 58 | #define DATA_SEG_BITS 0x10000000 | ||
| 59 | |||
| 56 | /* The standard definitions of these macros would work ok, | 60 | /* The standard definitions of these macros would work ok, |
| 57 | but these are faster because the constants are short. */ | 61 | but these are faster because the constants are short. */ |
| 58 | 62 | ||
| @@ -65,3 +69,6 @@ NOTE-END */ | |||
| 65 | 69 | ||
| 66 | /* arch-tag: 8fd020ee-78a7-4d87-96ce-6129f52f7bee | 70 | /* arch-tag: 8fd020ee-78a7-4d87-96ce-6129f52f7bee |
| 67 | (do not change this comment) */ | 71 | (do not change this comment) */ |
| 72 | |||
| 73 | #endif /* 0 */ | ||
| 74 | |||