~ubuntu-branches/ubuntu/saucy/bc/saucy-proposed

« back to all changes in this revision

Viewing changes to bc/bc.y

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2002-04-13 11:33:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020413113349-13xjv23rme03ctut
Tags: 1.06-8
* debian/control: Priority changed to standard as per overrides file
* debian/control: Standards-Version upgraded to 3.5.0
* debian/copyright: Debian/GNU Linux typo fix (lintian)

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
                            {
204
204
                              if ($4 & 2)
205
205
                                warn ("Comparison in first for expression");
206
 
                              if ($4 >= 0)
 
206
                              if ($4 <= 0)
207
207
                                generate ("p");
208
208
                              $4 = next_label++;
209
209
                              sprintf (genstr, "N%1d:", $4);
211
211
                            }
212
212
                          opt_expression ';'
213
213
                            {
214
 
                              if ($7 < 0) generate ("1");
 
214
                              if ($7 &16 ) generate ("1");
215
215
                              $7 = next_label++;
216
216
                              sprintf (genstr, "B%1d:J%1d:", $7, break_label);
217
217
                              generate (genstr);