This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: gcc 4.1.1 and Bliss frontend.
- From: Roar Thronæs <roart at nvg dot ntnu dot no>
- To: Andrew Haley <aph at redhat dot com>
- Cc: gcc at gnu dot org
- Date: Sun, 23 Jul 2006 10:43:49 +0200 (CEST)
- Subject: Re: gcc 4.1.1 and Bliss frontend.
- References: <Pine.LNX.4.60.0607220952550.18943@hagbart.nvg.ntnu.no> <17601.58587.516468.355097@zebedee.pink>
On Sat, 22 Jul 2006, Andrew Haley wrote:
Roar Thronæs writes:
>
> I have started working on moving the frontend from 3.4.3 to 4.1.1.
> But it seems EXIT_BLOCK_EXPR and LABELED_BLOCK_EXPR have been moved
> to java, since no one else was using it.
>
> Would it be possible to move that code back, please?
I doubt it. Why do you need these for Bliss?
I use them to implement features like
labeled-block { label : } . . . unlabeled-block
leave-expression LEAVE label
Simple example for what it may look like:
mylabel:
begin
expressions;
if something then leave mylabel;
expressions;
end;
--
-Roar Thronæs