regarding basic blocks

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

I was printing all statements in all basic blocks
using the code shown below.
The statements which declare variables are not printed
by the below code. Why?
I think all the statements which declare variables
should be present in a basic block. I am right??
Thanks in advance. 


     FOR_EACH_BB (bb)
 {
         block_stmt_iterator si;
         fprintf(vect_dump,"\nbb=%u\n",bb);
for (si = bsi_start (bb); !bsi_end_p (si); bsi_next
(&si))

    {
    tree stmt = bsi_stmt (si);
    fprintf(vect_dump,"\n statement:  ");
  print_generic_stmt (vect_dump, stmt, 0);
     }
}


      ___________________________________________________________ 
Yahoo! Mail is the world's favourite email. Don't settle for less, sign up for
your free account today http://uk.rd.yahoo.com/evt=44106/*http://uk.docs.yahoo.com/mail/winter07.html 

[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux