This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/12719] New: Variables declaration can be anywhere.
- From: "albie at alfarrabio dot di dot uminho dot pt" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 22 Oct 2003 07:49:12 -0000
- Subject: [Bug c/12719] New: Variables declaration can be anywhere.
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12719
Summary: Variables declaration can be anywhere.
Product: gcc
Version: 3.3
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: c
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: albie at alfarrabio dot di dot uminho dot pt
CC: gcc-bugs at gcc dot gnu dot org
GCC build triplet: i686-gnu-linux
GCC host triplet: i686-gnu-linux
GCC target triplet: i686-gnu-linux
Did not tested with 3.3.1 and 3.3.2, but looking to the ChangeLog it seems not
modified.
With my gcc 3.3 I can compile this:
...
WordLstNode *node;
N = word_list_size(WL1);
Dictionary* dic = dictionary_new(N);
...