Re: Oberon-2 front-end as a GSoC project

2011-04-07 Thread Levon Haykazyan
> - Original Message - > From: Basile Starynkevitch > To: "Levon Haykazyan" > Cc: gcc@gcc.gnu.org > Subject: Re: Oberon-2 front-end as a GSoC project > Date: Wed, 6 Apr 2011 21:19:05 +0200 > > > On Wed, 06 Apr 2011 19:07:26 + > "Levon Haykazyan" wrote: > [citing me Basile] > > > >

RE: gcc-4.6-20110401 is now available

2011-04-07 Thread Kamble, Nitin A
> > Is there any information on when next releases of gcc are planned to > be released ? > > Only guesses. > > Why do you ask? > > Ian Ian, well thought guesses is all that I am looking for now. We will be coming up with next Yocto release, we will like to plan which version of gcc shall we t

gcc

2011-04-07 Thread ymousnw2
gcc Don't limit yourself http://bit.ly/gaOqFM i was able to take my family on the vacation of our dreams can you even believe you've been missing out on this please don't think you can't do this because anyone can if i can if i were you i would be jumping at this opportunity

Announce: MELT plugin (0.7) release candidate 0 for GCC 4.6

2011-04-07 Thread Basile Starynkevitch
Hello, I am releasing MELT as a plugin for GCC 4.6 in a release candidate 0 tar ball. See http://gcc-melt.org/ for more. Download the tar-ball http://gcc-melt.org/melt-0.7rc0-plugin-for-gcc-4.6.tgz (a tarball of 3185664 bytes, and md5sum 755aef308901be9dd880a887875effd3) I would like some feedba

Extending TYPE_DECL_IS_STUB trick in dwarf2out.c

2011-04-07 Thread Eric Botcazou
Hi, dwarf2out.c has this trick: /* Define a macro which returns nonzero for a TYPE_DECL which was implicitly generated for a tagged type. Note that unlike the gcc front end (which generates a NULL named TYPE_DECL node for each complete tagged type, each array type, and each function

gcc-4.5-20110407 is now available

2011-04-07 Thread gccadmin
Snapshot gcc-4.5-20110407 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/4.5-20110407/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 4.5 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/branches

how to iterate the local variables of a function in a plugin

2011-04-07 Thread weixing ji
hi, I am writing a plugin which is invoked at the event "PLUGIN_OVERRIDE_GATE". My question is how to access all the local variables of a function if I get a FUNC_DECL tree node. I have tried as following: for(block = DECL_INITIAL(fn_decl); block; block = TREE_CHAIN(block)) { for (temp = BLOCK_VARS

Re: how to iterate the local variables of a function in a plugin

2011-04-07 Thread Ian Lance Taylor
weixing ji writes: > I am writing a plugin which is invoked at the event > "PLUGIN_OVERRIDE_GATE". My question is how to access all the local > variables of a function if I get a FUNC_DECL tree node. I have tried > as following: > for(block = DECL_INITIAL(fn_decl); block; block = TREE_CHAIN(block

I wish to host a new mirror site.

2011-04-07 Thread Kohei Takahashi
Hi, I wish to host a new mirror site. When it is possible to register in the mirror list, it is glad. The URL is http://ftp.tsukuba.wide.ad.jp/software/gcc . The mirror is located in Japan/Tsukuba, mirror manager is me, Kohei Takahashi, and email address is fl...@ac-room.org . -- TAKAHASHI Kohe

running GCC without any input files, but with plugins???

2011-04-07 Thread Basile Starynkevitch
Hello All, The current GCC (I mean the gcc/gcc.c driver) apparently dont do anything (like running cc1) if not given any input file. However, I feel that, at least for some plugins, enabling gcc (the driver) to run cc1 without input files but with a plugin may be sometimes sensible. The MELT pl