Commit 2d3a667a by Michael Matz Committed by Michael Matz

Make-lang.in (sta.o-warn): Delete.

	* Make-lang.in (sta.o-warn): Delete.
        * sta.c (ffesta_save_): Don't break aliasing rules.

From-SVN: r78368
parent 7e26b0e3
2004-02-24 Michael Matz <matz@suse.de>
* Make-lang.in (sta.o-warn): Delete.
* sta.c (ffesta_save_): Don't break aliasing rules.
2004-02-20 Kazu Hirata <kazu@cs.umass.edu> 2004-02-20 Kazu Hirata <kazu@cs.umass.edu>
* Make-lang.in (g77spec.o): Depend on intl.h. * Make-lang.in (g77spec.o): Depend on intl.h.
......
...@@ -91,8 +91,6 @@ F77_OBJS = f/bad.o f/bit.o f/bld.o f/com.o f/data.o f/equiv.o f/expr.o \ ...@@ -91,8 +91,6 @@ F77_OBJS = f/bad.o f/bit.o f/bld.o f/com.o f/data.o f/equiv.o f/expr.o \
# Use loose warnings for this front end. # Use loose warnings for this front end.
f-warn = $(WERROR) f-warn = $(WERROR)
# type-punning warning
f/sta.o-warn = -Wno-error
f771$(exeext): $(F77_OBJS) $(BACKEND) $(LIBDEPS) f771$(exeext): $(F77_OBJS) $(BACKEND) $(LIBDEPS)
rm -f f771$(exeext) rm -f f771$(exeext)
......
...@@ -335,7 +335,7 @@ ffesta_save_ (ffelexToken t) ...@@ -335,7 +335,7 @@ ffesta_save_ (ffelexToken t)
{ /* No handler in this list, try exec list if { /* No handler in this list, try exec list if
not tried yet. */ not tried yet. */
if (ffesta_current_possible_ if (ffesta_current_possible_
== (ffestaPossible_) &ffesta_possible_nonexecs_) == (ffestaPossible_) &ffesta_possible_nonexecs_.first)
{ {
ffesta_current_possible_ = ffesta_possible_execs_.first; ffesta_current_possible_ = ffesta_possible_execs_.first;
ffesta_current_handler_ = ffesta_current_possible_->handler; ffesta_current_handler_ = ffesta_current_possible_->handler;
...@@ -379,7 +379,7 @@ ffesta_save_ (ffelexToken t) ...@@ -379,7 +379,7 @@ ffesta_save_ (ffelexToken t)
{ {
if (possible->handler == NULL) if (possible->handler == NULL)
{ {
if (possible == (ffestaPossible_) &ffesta_possible_nonexecs_) if (possible == (ffestaPossible_) &ffesta_possible_nonexecs_.first)
{ {
possible = first_exec = ffesta_possible_execs_.first; possible = first_exec = ffesta_possible_execs_.first;
continue; continue;
......
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