From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30992 invoked by alias); 28 Feb 2007 21:37:15 -0000 Received: (qmail 30835 invoked by alias); 28 Feb 2007 21:36:52 -0000 Date: Wed, 28 Feb 2007 21:37:00 -0000 Message-ID: <20070228213652.30831.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug libfortran/30765] [4.2, 4.1 only] generating files from m4 In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "tkoenig at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2007-02/txt/msg03028.txt.bz2 ------- Comment #5 from tkoenig at gcc dot gnu dot org 2007-02-28 21:36 ------- Subject: Bug 30765 Author: tkoenig Date: Wed Feb 28 21:36:31 2007 New Revision: 122412 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=122412 Log: 2007-02-28 Thomas Koenig Backport from trunk PR fortran/30869 PR libfortran/30533 PR libfortran/30765 * match.c(gfc_match_iterator): Remove conflict between loop variable and pointer. * fortran/iresolve.c(gfc_resolve_maxloc): Remove coercion of argument to default integer. (gfc_resolve_minloc): Likewise. 2007-02-28 Thomas Koenig Backport from trunk PR libfortran/30533 PR libfortran/30765 * Makefile.am: Add $(srcdir) too all files in generated/. (i_maxloc0_c): Add maxloc0_4_i1.c, maxloc0_8_i1.c, maxloc0_16_i1.c, maxloc0_4_i2.c, maxloc0_8_i2.c and maxloc0_16_i2.c. (i_maxloc1_c): Add maxloc1_4_i1.c, maxloc1_8_i1.c, maxloc1_16_i1.c, maxloc1_4_i2.c, maxloc1_8_i2.c and maxloc1_16_i2.c. (i_maxval_c): Add maxval_i1.c and maxval_i2.c. (i_minloc0_c): Add minloc0_4_i1.c, minloc0_8_i1.c, minloc0_16_i1.c, minloc0_4_i2.c, minloc0_8_i2.c and minloc0_16_i2.c. (i_minloc_1.c): Add minloc1_4_i1.c, minloc1_8_i1.c, minloc1_16_i1.c, minloc1_4_i2.c, minloc1_8_i2.c and minloc1_16_i2.c. (i_minval_c): Add minval_i1.c and minval_i2.c. (i_sum_c): Add sum_i1.c and sum_i2.c. (i_product_c): Add product_i1.c and product_i2.c. (i_matmul_c): Add matmul_i1.c and matmul_i2.c. (gfor_built_specific_src): Remove $(srcdir) from target. (gfor_bulit_specific2_src): Likewise. Use $(M4) instead of m4. Makefile.in: Regenerated. libgfortran.h: Add GFC_INTEGER_1_HUGE and GFC_INTEGER_2_HUGE. Add gfc_array_i1 and gfc_array_i2. * generated/matmul_i1.c: New file. * generated/matmul_i2.c: New file. * generated/maxloc0_16_i1.c: New file. * generated/maxloc0_16_i2.c: New file. * generated/maxloc0_4_i1.c: New file. * generated/maxloc0_4_i2.c: New file. * generated/maxloc0_8_i1.c: New file. * generated/maxloc0_8_i2.c: New file. * generated/maxloc1_16_i1.c: New file. * generated/maxloc1_16_i2.c: New file. * generated/maxloc1_4_i1.c: New file. * generated/maxloc1_4_i2.c: New file. * generated/maxloc1_8_i1.c: New file. * generated/maxloc1_8_i2.c: New file. * generated/maxval_i1.c: New file. * generated/maxval_i2.c: New file. * generated/minloc0_16_i1.c: New file. * generated/minloc0_16_i2.c: New file. * generated/minloc0_4_i1.c: New file. * generated/minloc0_4_i2.c: New file. * generated/minloc0_8_i1.c: New file. * generated/minloc0_8_i2.c: New file. * generated/minloc1_16_i1.c: New file. * generated/minloc1_16_i2.c: New file. * generated/minloc1_4_i1.c: New file. * generated/minloc1_4_i2.c: New file. * generated/minloc1_8_i1.c: New file. * generated/minloc1_8_i2.c: New file. * generated/minval_i1.c: New file. * generated/minval_i2.c: New file. * generated/product_i1.c: New file. * generated/product_i2.c: New file. * generated/sum_i1.c: New file. * generated/sum_i2.c: New file. 2007-02-28 Thomas Koenig Backport from trunk PR fortran/30869 PR libfortran/30533 PR libfortran/30765 * gfortran.dg/intrinsic_intkinds_1.f90: New test. * gfortran.dg/do_pointer_1.f90: New test. Added: branches/gcc-4_2-branch/gcc/testsuite/gfortran.dg/do_pointer_1.f90 branches/gcc-4_2-branch/gcc/testsuite/gfortran.dg/intrinsic_intkinds_1.f90 branches/gcc-4_2-branch/libgfortran/generated/matmul_i1.c branches/gcc-4_2-branch/libgfortran/generated/matmul_i2.c branches/gcc-4_2-branch/libgfortran/generated/maxloc0_16_i1.c branches/gcc-4_2-branch/libgfortran/generated/maxloc0_16_i2.c branches/gcc-4_2-branch/libgfortran/generated/maxloc0_4_i1.c branches/gcc-4_2-branch/libgfortran/generated/maxloc0_4_i2.c branches/gcc-4_2-branch/libgfortran/generated/maxloc0_8_i1.c branches/gcc-4_2-branch/libgfortran/generated/maxloc0_8_i2.c branches/gcc-4_2-branch/libgfortran/generated/maxloc1_16_i1.c branches/gcc-4_2-branch/libgfortran/generated/maxloc1_16_i2.c branches/gcc-4_2-branch/libgfortran/generated/maxloc1_4_i1.c branches/gcc-4_2-branch/libgfortran/generated/maxloc1_4_i2.c branches/gcc-4_2-branch/libgfortran/generated/maxloc1_8_i1.c branches/gcc-4_2-branch/libgfortran/generated/maxloc1_8_i2.c branches/gcc-4_2-branch/libgfortran/generated/maxval_i1.c branches/gcc-4_2-branch/libgfortran/generated/maxval_i2.c branches/gcc-4_2-branch/libgfortran/generated/minloc0_16_i1.c branches/gcc-4_2-branch/libgfortran/generated/minloc0_16_i2.c branches/gcc-4_2-branch/libgfortran/generated/minloc0_4_i1.c branches/gcc-4_2-branch/libgfortran/generated/minloc0_4_i2.c branches/gcc-4_2-branch/libgfortran/generated/minloc0_8_i1.c branches/gcc-4_2-branch/libgfortran/generated/minloc0_8_i2.c branches/gcc-4_2-branch/libgfortran/generated/minloc1_16_i1.c branches/gcc-4_2-branch/libgfortran/generated/minloc1_16_i2.c branches/gcc-4_2-branch/libgfortran/generated/minloc1_4_i1.c branches/gcc-4_2-branch/libgfortran/generated/minloc1_4_i2.c branches/gcc-4_2-branch/libgfortran/generated/minloc1_8_i1.c branches/gcc-4_2-branch/libgfortran/generated/minloc1_8_i2.c branches/gcc-4_2-branch/libgfortran/generated/minval_i1.c branches/gcc-4_2-branch/libgfortran/generated/minval_i2.c branches/gcc-4_2-branch/libgfortran/generated/product_i1.c branches/gcc-4_2-branch/libgfortran/generated/product_i2.c branches/gcc-4_2-branch/libgfortran/generated/sum_i1.c branches/gcc-4_2-branch/libgfortran/generated/sum_i2.c Modified: branches/gcc-4_2-branch/gcc/fortran/ChangeLog branches/gcc-4_2-branch/gcc/fortran/iresolve.c branches/gcc-4_2-branch/gcc/fortran/match.c branches/gcc-4_2-branch/gcc/testsuite/ChangeLog branches/gcc-4_2-branch/libgfortran/ChangeLog branches/gcc-4_2-branch/libgfortran/Makefile.am branches/gcc-4_2-branch/libgfortran/Makefile.in branches/gcc-4_2-branch/libgfortran/libgfortran.h -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30765