diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-04-12 17:09:19 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-04-12 17:09:19 +0000 |
commit | 36c0886413a74d8d9341942347eb01897d0c2e77 (patch) | |
tree | 72d602809b95c40175af4af1aa679a7cebdfa33f /src | |
parent | 63616f520813a708b0bf717be9dde084bddab31a (diff) | |
download | emacs-36c0886413a74d8d9341942347eb01897d0c2e77.tar.gz |
(XUINT, XSET): Remove.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/m/hp800.h | 8 |
2 files changed, 4 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index dec4f11e353..e4e11b296f3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2008-04-12 Dan Nicolaescu <dann@ics.uci.edu> + + * m/hp800.h (XUINT, XSET): Remove. + 2008-04-12 Juanma Barranquero <lekktu@gmail.com> * fileio.c (Fexpand_file_name): Add declaration for `p' missing in diff --git a/src/m/hp800.h b/src/m/hp800.h index 707946a9972..667a99e671f 100644 --- a/src/m/hp800.h +++ b/src/m/hp800.h @@ -60,14 +60,6 @@ Boston, MA 02110-1301, USA. */ #define EXPLICIT_SIGN_EXTEND -/* The standard definitions of these macros would work ok, - but these are faster because the constants are short. */ - - -#define XUINT(a) (((unsigned)(a) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS) - -#define XSET(var, type, ptr) \ - ((var) = ((int)(type) << VALBITS) + (((unsigned) (ptr) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS)) /* Common definitions for HPUX and GNU/Linux. */ |