Commit 2cccc340 by Richard Henderson Committed by Richard Henderson

* c-pragma.c (mark_align_stack): Dereference the void* properly.

From-SVN: r29512
parent c911d5eb
Sun Sep 19 14:18:39 1999 Richard Henderson <rth@cygnus.com>
* c-pragma.c (mark_align_stack): Dereference the void* properly.
Sun Sep 19 09:03:40 1999 Mark Mitchell <mark@codesourcery.com> Sun Sep 19 09:03:40 1999 Mark Mitchell <mark@codesourcery.com>
* rtl.h (insns_safe_to_move_p): New function. * rtl.h (insns_safe_to_move_p): New function.
......
...@@ -519,7 +519,7 @@ static void ...@@ -519,7 +519,7 @@ static void
mark_align_stack (p) mark_align_stack (p)
void *p; void *p;
{ {
align_stack *a = (align_stack *) p; align_stack *a = *(align_stack **) p;
while (a) while (a)
{ {
......
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