Commit 14e7eabd by Nick Clifton Committed by Nick Clifton

Fix compile time warning message

From-SVN: r34947
parent 46d3a873
2000-07-10 Nick Clifton <nickc@cygnus.com>
* libgcc2.c (next_stack_level): Cast result of computation to
(void **) so that the assignment doe snot generate a warning.
2000-07-10 Chandrakala Chavva <cchavva@redhat.com>
* flags.h : Add new variable flag_single_precision_constant.
......
......@@ -3712,8 +3712,8 @@ next_stack_level (void *pc, frame_state *udata, frame_state *caller_udata)
else
caller_udata->cfa = udata->cfa;
if (caller_udata->indirect)
caller_udata->cfa = *(word_type *)((unsigned char *)caller_udata->cfa
+ caller_udata->base_offset);
caller_udata->cfa = * (void **) ((unsigned char *)caller_udata->cfa
+ caller_udata->base_offset);
caller_udata->cfa += caller_udata->cfa_offset;
return caller_udata;
......
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