public inbox for frysk@sourceware.org
 help / color / mirror / Atom feed
From: Mark Wielaard <mark@klomp.org>
To: frysk@sourceware.org
Cc: scox@sourceware.org
Subject: Re: frysk-imports frysk/bindir/ChangeLog frysk/bin ...
Date: Thu, 14 Jun 2007 09:34:00 -0000	[thread overview]
Message-ID: <1181812596.4474.7.camel@dijkstra.wildebeest.org> (raw)
In-Reply-To: <20070614032033.31344.qmail@sourceware.org>

Hi,

On Thu, 2007-06-14 at 03:20 +0000, scox@sourceware.org wrote:
> CVSROOT:	/cvs/frysk
> Module name:	frysk-imports
> Changes by:	scox@sourceware.org	2007-06-14 03:20:33
>
> 	* fhpd.java (execFile): New.
> 	* DebugInfo.java (what): Add typedef.
> 	* DebugInfoEvaluator.java (fetchType): New.
> 	(getClassType): Use it.
> 	(getValue): Use it.  Add union_type, structure_type, enumeration_type.
> 	* Type.java (isTypedef): New.
> 	* ArithmeticType.java (ArithmeticType): Use it.
> 	* ClassType.java (getName): Use it.
> 	* DwarfDie.java (getUltimateType): New.
> 	* cni/DwarfDie.cxx (get_type): Add follow_type_def parameter.
        
        +  private ClassType getClassType (DwarfDie classDie, String
        name)
           {
             int typeSize = 0;
        -    ClassType classType = new ClassType(task.getIsa().getByteOrder());
        -    while (subrange != null)
        +    DwarfDie member = classDie.getChild();
        +    ClassType classType = new ClassType(task.getIsa().getByteOrder(), name);
        +    AddClassMembers:
        +    while (member != null)

New ecj compile rules barf (and make the build fail) on unused labels so
I removed the newly introduced, but never used AddClassMembers: label.

2007-06-14  Mark Wielaard  <mwielaard@redhat.com>

        * DebugInfoEvaluator.java (getClassType): Removed unused label
        AddClassMembers.

Cheers,

Mark

diff -u -r1.8 DebugInfoEvaluator.java
--- frysk-core/frysk/debuginfo/DebugInfoEvaluator.java  14 Jun 2007 03:20:33 -0000      1.8
+++ frysk-core/frysk/debuginfo/DebugInfoEvaluator.java  14 Jun 2007 09:16:19 -0000
@@ -598,7 +598,6 @@
     int typeSize = 0;
     DwarfDie member = classDie.getChild();
     ClassType classType = new ClassType(task.getIsa().getByteOrder(), name);
-    AddClassMembers:
     while (member != null)
       {
         long offset;


           reply	other threads:[~2007-06-14  9:16 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <20070614032033.31344.qmail@sourceware.org>]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1181812596.4474.7.camel@dijkstra.wildebeest.org \
    --to=mark@klomp.org \
    --cc=frysk@sourceware.org \
    --cc=scox@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).