Fix compile time warning message
From-SVN: r34947
This commit is contained in:
parent
46d3a87396
commit
14e7eabd24
@ -1,3 +1,8 @@
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user