Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[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

Back to the top