diff options
| author | Paul Eggert | 2014-09-17 22:40:17 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-09-17 22:40:17 -0700 |
| commit | e8be4f442baaf84a0d1c9e39b573a77ea9cda908 (patch) | |
| tree | 785c4af97b66f4e2a5830a3be838ec886fe94dfb /src/ChangeLog | |
| parent | bb95ed98f4ef667609d7b0990933f9f4095c8b6a (diff) | |
| download | emacs-e8be4f442baaf84a0d1c9e39b573a77ea9cda908.tar.gz emacs-e8be4f442baaf84a0d1c9e39b573a77ea9cda908.zip | |
Port USE_LOCAL_ALLOCATORS code to clang 3.4 x86-64.
Revert previous lisp.h change, and install the following instead.
* lisp.h (USE_LOCAL_ALLOCATORS): Define only if __GNUC__ &&
!__clang__. This works with GCC and with clang and is safer for
compilers we don't know about.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b91221ef8f3..010f5fd95dd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | 2014-09-18 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2014-09-18 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Port USE_LOCAL_ALLOCATORS code to clang 3.4 x86-64. | 3 | Port USE_LOCAL_ALLOCATORS code to clang 3.4 x86-64. |
| 4 | * lisp.h (ALLOCA_FIXUP): New constant. | 4 | * lisp.h (USE_LOCAL_ALLOCATORS): Define only if __GNUC__ && |
| 5 | (LOCAL_ALLOCA): New macro. | 5 | !__clang__. This works with GCC and with clang and is safer for |
| 6 | (local_cons, make_local_vector, make_local_string): Use them. | 6 | compilers we don't know about. |
| 7 | (local_cons): Rename parameter to make capture less likely. | 7 | (local_cons): Rename parameter to make capture less likely. |
| 8 | 8 | ||
| 9 | 2014-09-17 Samuel Bronson <naesten@gmail.com> | 9 | 2014-09-17 Samuel Bronson <naesten@gmail.com> |