Re: [patch, fortran, committed] Change 1**k to 1

2013-05-01 Thread Thomas Koenig
Hi Steve, s/cand/and Fixed, thanks. Thomas

Re: [patch, fortran, committed] Change 1**k to 1

2013-04-30 Thread Steve Kargl
On Tue, Apr 30, 2013 at 11:47:46PM +0200, Thomas Koenig wrote: > + e->value.op.op1 = NULL; > + e->value.op.op2 = NULL; > + mpz_init_set_si (e->value.integer, 1); > + /* Typespec cand location are still OK. */ s/cand/and -- steve

[patch, fortran, committed] Change 1**k to 1

2013-04-30 Thread Thomas Koenig
Hello world, the attached patch was committed after Tobias Burnus' OK in PR 57073 and regression-testing. Thomas 2013-04-30 Thomas Koenig PR fortran/57071 * frontend-passes.c (optimize_power): Simplify 1**k to 1. 2013-04-30 Thomas Koenig PR fort