| Summary: | array of TYPE - look through typedef? | ||
|---|---|---|---|
| Product: | frysk | Reporter: | Andrew Cagney <cagney> |
| Component: | general | Assignee: | Unassigned <frysk-bugzilla> |
| Status: | ASSIGNED --- | ||
| Severity: | normal | CC: | tthomas |
| Priority: | P2 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Host: | Target: | ||
| Build: | Last reconfirmed: | ||
| Project(s) to access: | ssh public key: | ||
| Bug Depends on: | |||
| Bug Blocks: | 2246 | ||
|
Description
Andrew Cagney
2007-03-21 13:58:30 UTC
for instance:
typedef struct foo { int i; } foo;
foo arr[10];
print: arr
is the debug-info read correctly?
is this printed correctly?
Test code:
typedef struct foo { int i; } foo;
foo arr[3];
------------------------
(fhpd) print arr
[0.0]
{{
i=0,
},{
i=0,
},{
i=0,
}}
(fhpd) print arr --type
[0.0]
foo [3]
(fhpd) print arr[1] --type
[0.0]
foo
|