Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [cdt-debug-dev] Variables window refresh problem

Yes, please, submit a bug.
 
Thanks.

________________________________

From: cdt-debug-dev-bounces@xxxxxxxxxxx on behalf of ???
Sent: Thu 16/11/2006 07:14
To: CDT Debug developers list
Cc: CDT Debug developers list; cdt-debug-dev-bounces@xxxxxxxxxxx
Subject: [cdt-debug-dev] Variables window refresh problem



dears: 
        step by step, and step to the line "v = 9;" 
        variables window still show "t1 = 5".(the real value is 1.1) 
        I traced source code, because "-stack-list-locals 0" not detected the "t1" changed, and not create new var. 
        Can I report it a bug? 

        by the way, I think "-var-create" can not reply the type of varaible change, and variable name not change. 

int main(void) 
{ 
        int v = 0; 
        { 
                int t1 = 5; 
        } 
        { 
                float t1 = 1.1; 
                v = 9; 
        } 
        return 0; 
} 

Best regards
                    Lijun

-- 
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium.  Thank you.




Back to the top