diff options
Diffstat (limited to 'gcc/f/sta.c')
-rw-r--r-- | gcc/f/sta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/f/sta.c b/gcc/f/sta.c index 4b26d8cecd8..ee75fa88f60 100644 --- a/gcc/f/sta.c +++ b/gcc/f/sta.c @@ -335,7 +335,7 @@ ffesta_save_ (ffelexToken t) { /* No handler in this list, try exec list if not tried yet. */ if (ffesta_current_possible_ - == (ffestaPossible_) &ffesta_possible_nonexecs_) + == (ffestaPossible_) &ffesta_possible_nonexecs_.first) { ffesta_current_possible_ = ffesta_possible_execs_.first; ffesta_current_handler_ = ffesta_current_possible_->handler; @@ -379,7 +379,7 @@ ffesta_save_ (ffelexToken t) { if (possible->handler == NULL) { - if (possible == (ffestaPossible_) &ffesta_possible_nonexecs_) + if (possible == (ffestaPossible_) &ffesta_possible_nonexecs_.first) { possible = first_exec = ffesta_possible_execs_.first; continue; |