dotgnu-pnet
[Top][All Lists]
Advanced

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

[Pnet-developers] [bugs #12048] cscc hangs for some switch statements


From: Gopal.V
Subject: [Pnet-developers] [bugs #12048] cscc hangs for some switch statements
Date: Tue, 22 Feb 2005 08:50:26 +0000
User-agent: Mozilla/5.0 (compatible; Konqueror/2.2-11; Linux)

Update of bugs #12048 (project dotgnu-pnet):

                  Status:                    None => Fixed                  
             Open/Closed:                    Open => Closed                 

    _______________________________________________________

Follow-up Comment #1:

Fixed in CVS on 23rd Feb 2005.

the 80% calculations in switch was failing due to overflow.
Fixed with :

- if(((range * 80) / 100) <= numValues)
+ if(((range * 4) / 5) <= numValues && range < 0x1fffffff) 

I very much appreciate the precise test case !!.


    _______________________________________________________

This item URL is:

  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=12048>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/



reply via email to

[Prev in Thread] Current Thread [Next in Thread]