diff options
| author | Glenn Morris | 2010-05-11 19:37:59 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-05-11 19:37:59 -0700 |
| commit | 6a321bbcdd828bc72c785df161cfd88260601b6a (patch) | |
| tree | 33eed0c6f90076432cbb0775a701c70ce86f4743 /src/m/iris4d.h | |
| parent | 8b320e66d6e6d549ab445b7083d44e4b8a71319a (diff) | |
| download | emacs-6a321bbcdd828bc72c785df161cfd88260601b6a.tar.gz emacs-6a321bbcdd828bc72c785df161cfd88260601b6a.zip | |
Minor comment reformatting for some src/m/*.h files.
Diffstat (limited to 'src/m/iris4d.h')
| -rw-r--r-- | src/m/iris4d.h | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/src/m/iris4d.h b/src/m/iris4d.h index 54ebcdf74bd..e7f332057e5 100644 --- a/src/m/iris4d.h +++ b/src/m/iris4d.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | /* machine description file for Iris-4D machines. Use with s/irix*.h. | 1 | /* machine description file for Iris-4D machines. Use with s/irix*.h. |
| 2 | Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, 2006, 2007, | 2 | |
| 3 | 2008, 2009, 2010 Free Software Foundation, Inc. | 3 | Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
| 4 | 2009, 2010 Free Software Foundation, Inc. | ||
| 4 | 5 | ||
| 5 | This file is part of GNU Emacs. | 6 | This file is part of GNU Emacs. |
| 6 | 7 | ||
| @@ -20,7 +21,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 20 | 21 | ||
| 21 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word | 22 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 22 | is the most significant byte. */ | 23 | is the most significant byte. */ |
| 23 | |||
| 24 | #define WORDS_BIG_ENDIAN | 24 | #define WORDS_BIG_ENDIAN |
| 25 | 25 | ||
| 26 | /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend | 26 | /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend |
| @@ -28,17 +28,13 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 28 | are always unsigned. | 28 | are always unsigned. |
| 29 | 29 | ||
| 30 | This flag only matters if you use USE_LISP_UNION_TYPE. */ | 30 | This flag only matters if you use USE_LISP_UNION_TYPE. */ |
| 31 | |||
| 32 | #define EXPLICIT_SIGN_EXTEND | 31 | #define EXPLICIT_SIGN_EXTEND |
| 33 | 32 | ||
| 34 | #define TEXT_START 0x400000 | 33 | #define TEXT_START 0x400000 |
| 35 | 34 | ||
| 36 | /* | 35 | /* DATA_SEG_BITS forces extra bits to be or'd in with any pointers which |
| 37 | * DATA_SEG_BITS forces extra bits to be or'd in with any pointers which | 36 | were stored in a Lisp_Object (as Emacs uses fewer than 32 bits for |
| 38 | * were stored in a Lisp_Object (as Emacs uses fewer than 32 bits for | 37 | the value field of a LISP_OBJECT). */ |
| 39 | * the value field of a LISP_OBJECT). | ||
| 40 | */ | ||
| 41 | |||
| 42 | #define DATA_START 0x10000000 | 38 | #define DATA_START 0x10000000 |
| 43 | #define DATA_SEG_BITS 0x10000000 | 39 | #define DATA_SEG_BITS 0x10000000 |
| 44 | 40 | ||
| @@ -48,7 +44,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 48 | 44 | ||
| 49 | /* The standard definitions of these macros would work ok, | 45 | /* The standard definitions of these macros would work ok, |
| 50 | but these are faster because the constants are short. */ | 46 | but these are faster because the constants are short. */ |
| 51 | |||
| 52 | #define XUINT(a) (((unsigned)(a) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS) | 47 | #define XUINT(a) (((unsigned)(a) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS) |
| 53 | 48 | ||
| 54 | #define XSET(var, type, ptr) \ | 49 | #define XSET(var, type, ptr) \ |