diff options
| author | Paul Eggert | 2016-11-25 21:24:28 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-11-25 21:25:55 -0800 |
| commit | d2d4b0746500265eddfa3c618bd6670aaa5eee90 (patch) | |
| tree | 874863a0e41ab5863d33ad715dfbba5558520f4a /src/bytecode.c | |
| parent | acb5589fcd981650225e9fb2e949e3681db551c1 (diff) | |
| download | emacs-d2d4b0746500265eddfa3c618bd6670aaa5eee90.tar.gz emacs-d2d4b0746500265eddfa3c618bd6670aaa5eee90.zip | |
Port build to gcc -fcheck-pointer-bounds
This does not let Emacs run, just build.
* lib-src/etags.c (main):
* lib-src/profile.c (main):
Use return, not exit.
* src/bytecode.c (BYTE_CODE_THREADED) [__CHKP__]:
Do not define, as -fcheck-pointer-bounds is incompatible with taking
addresses of labels.
* src/menu.c (Fx_popup_dialog): Use eassume, not eassert,
to pacify gcc -fcheck-pointer-bounds -Wnull-dereference.
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index e2d8ab706c7..be39a81c5e9 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -46,7 +46,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 46 | indirect threaded, using GCC's computed goto extension. This code, | 46 | indirect threaded, using GCC's computed goto extension. This code, |
| 47 | as currently implemented, is incompatible with BYTE_CODE_SAFE and | 47 | as currently implemented, is incompatible with BYTE_CODE_SAFE and |
| 48 | BYTE_CODE_METER. */ | 48 | BYTE_CODE_METER. */ |
| 49 | #if (defined __GNUC__ && !defined __STRICT_ANSI__ \ | 49 | #if (defined __GNUC__ && !defined __STRICT_ANSI__ && !defined __CHKP__ \ |
| 50 | && !BYTE_CODE_SAFE && !defined BYTE_CODE_METER) | 50 | && !BYTE_CODE_SAFE && !defined BYTE_CODE_METER) |
| 51 | #define BYTE_CODE_THREADED | 51 | #define BYTE_CODE_THREADED |
| 52 | #endif | 52 | #endif |