* except.c (register_exception_table): Use Pmode, not PTRmode.

From-SVN: r8158
This commit is contained in:
Brendan Kehoe 1994-09-28 23:19:20 +00:00 committed by Brendan Kehoe
parent e87ee2a99d
commit 81613e4332
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Wed Sep 28 19:19:01 1994 Brendan Kehoe (brendan@mole.gnu.ai.mit.edu)
* except.c (register_exception_table): Use Pmode, not PTRmode.
Wed Sep 14 10:17:27 1994 Michael I Bushnell <mib@churchy.gnu.ai.mit.edu> Wed Sep 14 10:17:27 1994 Michael I Bushnell <mib@churchy.gnu.ai.mit.edu>
* g++.c: Include <sys/errno.h> in case `errno' is a macro * g++.c: Include <sys/errno.h> in case `errno' is a macro

View File

@ -1463,7 +1463,7 @@ register_exception_table ()
#ifdef TRY_NEW_EH #ifdef TRY_NEW_EH
emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "__register_exceptions"), 0, emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "__register_exceptions"), 0,
VOIDmode, 1, VOIDmode, 1,
gen_rtx (SYMBOL_REF, PTRmode, "__EXCEPTION_TABLE__"), gen_rtx (SYMBOL_REF, Pmode, "__EXCEPTION_TABLE__"),
Pmode); Pmode);
#endif /* TRY_NEW_EH */ #endif /* TRY_NEW_EH */
} }