public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/20877] result may not be entry
       [not found] <bug-20877-6642@http.gcc.gnu.org/bugzilla/>
@ 2006-01-08  6:09 ` pinskia at gcc dot gnu dot org
  2006-06-09 22:16 ` pault at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-01-08  6:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from pinskia at gcc dot gnu dot org  2006-01-08 06:09 -------
We should be erroring out before adding the symbol to namespace, which is not
happening.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20877



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug fortran/20877] result may not be entry
       [not found] <bug-20877-6642@http.gcc.gnu.org/bugzilla/>
  2006-01-08  6:09 ` [Bug fortran/20877] result may not be entry pinskia at gcc dot gnu dot org
@ 2006-06-09 22:16 ` pault at gcc dot gnu dot org
  2006-06-11 22:33 ` pault at gcc dot gnu dot org
  2006-06-11 22:35 ` pault at gcc dot gnu dot org
  3 siblings, 0 replies; 6+ messages in thread
From: pault at gcc dot gnu dot org @ 2006-06-09 22:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pault at gcc dot gnu dot org  2006-06-09 22:16 -------
Subject: Bug 20877

Author: pault
Date: Fri Jun  9 22:16:08 2006
New Revision: 114526

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=114526
Log:
2006-06-10  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/24558
        PR fortran/20877
        PR fortran/25047
        * decl.c (get_proc_name): Add new argument to flag that a
        module function entry is being treated. If true, correct
        error condition, add symtree to module namespace and add
        a module procedure.
        (gfc_match_function_decl, gfc_match_entry,
        gfc_match_subroutine): Use the new argument in calls to
        get_proc_name.
        * resolve.c (resolve_entries): ENTRY symbol reference to
        to master entry namespace if a module function.
        * trans-decl.c (gfc_create_module_variable): Return if
        the symbol is an entry.
        * trans-exp.c (gfc_conv_variable): Check that parent_decl
        is not NULL.

2006-06-10  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/24558
        * gfortran.dg/entry_6.f90: New test.

        PR fortran/20877
        PR fortran/25047
        * gfortran.dg/entry_7.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/entry_6.f90
    trunk/gcc/testsuite/gfortran.dg/entry_7.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/decl.c
    trunk/gcc/fortran/resolve.c
    trunk/gcc/fortran/trans-decl.c
    trunk/gcc/fortran/trans-expr.c
    trunk/gcc/testsuite/ChangeLog


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20877


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug fortran/20877] result may not be entry
       [not found] <bug-20877-6642@http.gcc.gnu.org/bugzilla/>
  2006-01-08  6:09 ` [Bug fortran/20877] result may not be entry pinskia at gcc dot gnu dot org
  2006-06-09 22:16 ` pault at gcc dot gnu dot org
@ 2006-06-11 22:33 ` pault at gcc dot gnu dot org
  2006-06-11 22:35 ` pault at gcc dot gnu dot org
  3 siblings, 0 replies; 6+ messages in thread
From: pault at gcc dot gnu dot org @ 2006-06-11 22:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from pault at gcc dot gnu dot org  2006-06-11 22:32 -------
Subject: Bug 20877

Author: pault
Date: Sun Jun 11 22:32:26 2006
New Revision: 114551

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=114551
Log:
2006-06-12  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/24558
        PR fortran/20877
        PR fortran/25047
        * decl.c (get_proc_name): Add new argument to flag that a
        module function entry is being treated. If true, correct
        error condition, add symtree to module namespace and add
        a module procedure.
        (gfc_match_function_decl, gfc_match_entry,
        gfc_match_subroutine): Use the new argument in calls to
        get_proc_name.
        * resolve.c (resolve_entries): ENTRY symbol reference to
        to master entry namespace if a module function.
        * trans-decl.c (gfc_create_module_variable): Return if
        the symbol is an entry.

        PR fortran/23091
        * resolve.c (resolve_fl_variable): Error if an automatic
        object has the SAVE attribute.

        PR fortran/24168
        * expr.c (simplify_intrinsic_op): Transfer the rank and
        the locus to the simplified expression.

        PR fortran/25090
        PR fortran/25058
        * gfortran.h : Add int entry_id to gfc_symbol.
        * resolve.c : Add static variables current_entry_id and
        specification_expr.
        (resolve_variable): During code resolution, check if a
        reference to a dummy variable in an executable expression
        is preceded by its appearance as a parameter in an entry.
        Likewise check its specification expressions.
        (resolve_code): Update current_entry_id on EXEC_ENTRY.
        (resolve_charlen, resolve_fl_variable): Set and reset
        specifiaction_expr.
        (is_non_constant_shape_array): Do not return on detection
        of a variable but continue to resolve all the expressions.
        (resolve_codes): set current_entry_id to an out of range
        value.

2006-06-12  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/24558
        * gfortran.dg/entry_6.f90: New test.

        PR fortran/20877
        PR fortran/25047
        * gfortran.dg/entry_7.f90: New test.

        PR fortran/23091
        * gfortran.dg/saved_automatic_1.f90: New test.

        PR fortran/24168
        * gfortran.dg/array_simplify_1.f90: New test.

        PR fortran/25090
        * gfortran.dg/entry_dummy_ref_1.f90: New test.

        PR fortran/25058
        * gfortran.dg/entry_dummy_ref_2.f90: New test.

Added:
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/array_simplify_1.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/entry_6.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/entry_7.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/entry_dummy_ref_1.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/entry_dummy_ref_2.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/saved_automatic_1.f90
Modified:
    branches/gcc-4_1-branch/gcc/fortran/ChangeLog
    branches/gcc-4_1-branch/gcc/fortran/decl.c
    branches/gcc-4_1-branch/gcc/fortran/expr.c
    branches/gcc-4_1-branch/gcc/fortran/gfortran.h
    branches/gcc-4_1-branch/gcc/fortran/resolve.c
    branches/gcc-4_1-branch/gcc/fortran/trans-decl.c
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20877


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug fortran/20877] result may not be entry
       [not found] <bug-20877-6642@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2006-06-11 22:33 ` pault at gcc dot gnu dot org
@ 2006-06-11 22:35 ` pault at gcc dot gnu dot org
  3 siblings, 0 replies; 6+ messages in thread
From: pault at gcc dot gnu dot org @ 2006-06-11 22:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from pault at gcc dot gnu dot org  2006-06-11 22:34 -------
Cracked on trunk and 4.1.

Paul


-- 

pault at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20877


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug fortran/20877] result may not be entry
  2005-04-08 15:59 [Bug fortran/20877] New: error needed jv244 at cam dot ac dot uk
  2005-04-22 14:57 ` [Bug fortran/20877] result may not be entry tobi at gcc dot gnu dot org
@ 2005-05-12  8:29 ` fxcoudert at gcc dot gnu dot org
  1 sibling, 0 replies; 6+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-05-12  8:29 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From fxcoudert at gcc dot gnu dot org  2005-05-12 08:29 -------
J cannot be used twice in this code. Right now, gfortran has an ICE on this one:

$ gfortran a.f90
 In file a.f90:4

  ENTRY J()
        1
 Internal Error at (1):
 insert_bbt(): Duplicate key found!

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-05-12 08:29:30
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20877


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug fortran/20877] result may not be entry
  2005-04-08 15:59 [Bug fortran/20877] New: error needed jv244 at cam dot ac dot uk
@ 2005-04-22 14:57 ` tobi at gcc dot gnu dot org
  2005-05-12  8:29 ` fxcoudert at gcc dot gnu dot org
  1 sibling, 0 replies; 6+ messages in thread
From: tobi at gcc dot gnu dot org @ 2005-04-22 14:57 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |accepts-invalid
            Summary|error needed                |result may not be entry


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20877


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-06-11 22:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-20877-6642@http.gcc.gnu.org/bugzilla/>
2006-01-08  6:09 ` [Bug fortran/20877] result may not be entry pinskia at gcc dot gnu dot org
2006-06-09 22:16 ` pault at gcc dot gnu dot org
2006-06-11 22:33 ` pault at gcc dot gnu dot org
2006-06-11 22:35 ` pault at gcc dot gnu dot org
2005-04-08 15:59 [Bug fortran/20877] New: error needed jv244 at cam dot ac dot uk
2005-04-22 14:57 ` [Bug fortran/20877] result may not be entry tobi at gcc dot gnu dot org
2005-05-12  8:29 ` fxcoudert at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).