Bug 4233 - struct member of TYPE
Summary: struct member of TYPE
Status: RESOLVED FIXED
Alias: None
Product: frysk
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
: P2 normal
Target Milestone: ---
Assignee: Unassigned
URL:
Keywords:
Depends on:
Blocks: 2246
  Show dependency treegraph
 
Reported: 2007-03-21 13:59 UTC by Andrew Cagney
Modified: 2008-04-24 19:24 UTC (History)
0 users

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Cagney 2007-03-21 13:59:02 UTC
 
Comment 1 Stan Cox 2008-04-24 19:24:00 UTC
2007-11-19  Stan Cox  <scox@redhat.com>
* Type.java (toPrint(PrintWriter, Location, ByteBuffer, Format, int)):
Add indent parameter.  Change all implementers.
* CompositeType.java (toPrint (PrintWriter, Location, ByteBuffer,

(fhpd) what aas
extern struct {
  struct astruct {
    struct {
      int x;
      int y;
    } ;
  } as;
  bstruct bs;
} at /tmp/,x.c#7
(fhpd) print aas
{
  as={
    ={
      x=0,
      y=0,
    },
  },
  bs={
  ={
    x=0,
    y=0,
  },
},
}