Snapshot gcc-4.9-20130505 is now available on
ftp://gcc.gnu.org/pub/gcc/snapshots/4.9-20130505/
and on various mirrors, see http://gcc.gnu.org/mirrors.html for details.
This snapshot has been generated from the GCC 4.9 SVN branch
with the following options: svn://gcc.gnu.org/svn/gcc/trunk
I would like to move on to figuring out precisely what the issues are .
What rules would make this attribute behave in a proper and
understandable way?
Maybe there are limitations that the user would have to be aware of.
My main interest is in LLVM but there is great interest to keep the
com
On Sun, May 5, 2013 at 12:39 PM, Sudakshina Das
wrote:
> You can use the iterator FOR_EACH_EDGE in this form:
>
> FOR_EACH_EDGE (e, ei, bb->preds)
>
> where e is an edge ei is edge iterator bb is a basic block.
Oh, I guess this is exactly what I need. Now, I looked it up,
basic_block.h has such a
Hello Kartik
You can use the iterator FOR_EACH_EDGE in this form:
FOR_EACH_EDGE (e, ei, bb->preds)
where e is an edge ei is edge iterator bb is a basic block.
I hope that gave you what you were looking for.
Sudakshina Das
On Sun, May 5, 2013 at 10:05 AM, Kartik Singhal wrote:
>
> Hi
>
> I a