Commit 76dac339 by H.J. Lu Committed by H.J. Lu

trans-stmt.c (gfc_trans_do): Fix a typo in comment.

2007-05-21  H.J. Lu  <hongjiu.lu@intel.com>

	* trans-stmt.c (gfc_trans_do): Fix a typo in comment.

From-SVN: r124911
parent ccd3cc09
2007-05-21 H.J. Lu <hongjiu.lu@intel.com>
* trans-stmt.c (gfc_trans_do): Fix a typo in comment.
2007-05-21 Paul Thomas <pault@gcc.gnu.org> 2007-05-21 Paul Thomas <pault@gcc.gnu.org>
PR fortran/31867 PR fortran/31867
......
...@@ -818,8 +818,8 @@ gfc_trans_simple_do (gfc_code * code, stmtblock_t *pblock, tree dovar, ...@@ -818,8 +818,8 @@ gfc_trans_simple_do (gfc_code * code, stmtblock_t *pblock, tree dovar,
body; body;
cycle_label: cycle_label:
dovar += step dovar += step
countm1--;
if (countm1 ==0) goto exit_label; if (countm1 ==0) goto exit_label;
countm1--;
} }
exit_label: exit_label:
......
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