Nested-Conditionals Bug

Lawrence D'Oliveiro <ldo-kC51rjc0cqs1dNLGKZg6taU/[email protected]>
Newsgroups gmane.comp.multimedia.dvdauthor.user
Message-ID <[email protected]>
I found a bug in the optimizer for VM instructions, which incorrectly 
handled situations like this:

    if (g0 eq 1)
       {
         if (g2 eq 2)
           {
             g3 = 4;
           }
       }

Basically the second conditional test would get lost, and dvdunauthor’s 
decompilation would show that the code had been mangled into

      if (g0 == 1)
        {
          g3 = 4;
        }

I have done a fix for this.

------------------------------------------------------------------------------
_______________________________________________
Dvdauthor-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dvdauthor-users
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.