Commit 6bdd6070 by Diego Novillo Committed by Diego Novillo

i386-signal.h (MAKE_THROW_FRAME): Add volatile qualifier to _regs.


	* include/i386-signal.h (MAKE_THROW_FRAME): Add volatile
	qualifier to _regs.

From-SVN: r77484
parent bf310028
2004-02-08 Diego Novillo <dnovillo@redhat.com>
* include/i386-signal.h (MAKE_THROW_FRAME): Add volatile
qualifier to _regs.
2004-02-06 Michael Koch <konqueror@gmx.de>
* java/io/ObjectInputStream.java
......
......@@ -26,7 +26,7 @@ static void _name (int _dummy)
do \
{ \
void **_p = (void **)&_dummy; \
struct sigcontext_struct *_regs = (struct sigcontext_struct *)++_p; \
volatile struct sigcontext_struct *_regs = (struct sigcontext_struct *)++_p; \
\
/* Advance the program counter so that it is after the start of the \
instruction: the x86 exception handler expects \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment