This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 235467 - Navigator tab has a lot of same items (disassembler)
Summary: Navigator tab has a lot of same items (disassembler)
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 7.4
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Alexander Simon
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-03 17:40 UTC by soldatov
Modified: 2015-07-16 01:21 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
screenshot (111.58 KB, image/png)
2013-09-03 17:40 UTC, soldatov
Details

Note You need to log in before you can comment on or make changes to this bug.
Description soldatov 2013-09-03 17:40:42 UTC
Created attachment 139625 [details]
screenshot

Scenario:
- Create Quote
- Select 64-bit Cygwin in Project Properties window
- Push Step into
- Click into quote.cc
- Call context menu and select Disassembly tab
==> Navigator has a lot of "main" (~400 I think)
Comment 1 Alexander Simon 2015-07-13 14:01:38 UTC
Cannot reproduce the bug.
Is it still valid?
Comment 2 Alexander Simon 2015-07-13 15:57:10 UTC
close as not reproducible.
Comment 3 soldatov 2015-07-14 18:23:56 UTC
Can you check such test case?

class A {
public:
    A() {}
    int foo() {}
    virtual ~A() {}
private:

};

int foo() {
    A a;
    for (int i = 0; i < 10; i++) { // <-- line breakpoint
        a.foo();
    }
    return 1;
}

int main(int argc, char** argv) {
    foo();
    return 0;
}
Comment 4 Alexander Simon 2015-07-15 11:34:29 UTC
fixed, change set:
http://hg.netbeans.org/cnd-main/rev/3ddc54c5afc0
Comment 5 Quality Engineering 2015-07-16 01:21:32 UTC
Integrated into 'main-silver', will be available in build *201507160001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/3ddc54c5afc0
User: Alexander Simon <alexvsimon@netbeans.org>
Log: fixed Bug #235467 Navigator tab has a lot of same items (disassembler)