public inbox for frysk@sourceware.org
 help / color / mirror / Atom feed
* FYI quick ftrace build fix for FC6
@ 2007-10-01  9:10 Mark Wielaard
  0 siblings, 0 replies; only message in thread
From: Mark Wielaard @ 2007-10-01  9:10 UTC (permalink / raw)
  To: frysk

Hi,

the java source parser on FC6 seems to not like one particular construct
in the new ftrace code. So this patch expands the one source line to
make it easier for the compiler to parse:

2007-10-01  Mark Wielaard  <mwielaard@redhat.com>

       * ObjectFile.java (ObjFBuilder.getTracePoints):
       Expand ElfSymbol.Loader.loadAll() sequence.

Committed,

Mark

diff -u -r1.5 ObjectFile.java
--- frysk-core/frysk/ftrace/ObjectFile.java     29 Sep 2007 16:46:58 -0000     1.5
+++ frysk-core/frysk/ftrace/ObjectFile.java     1 Oct 2007 09:07:51 -0000
@@ -260,7 +260,9 @@
          this.tracePoints = new ArrayList();
          this.tracePointMap.put(this.origin, this.tracePoints);
 
-         new ElfSymbol.Loader(ObjectFile.this.staticSymtab).loadAll(this);
+         ElfSymbol.Loader loader;
+         loader = new ElfSymbol.Loader(ObjectFile.this.staticSymtab);
+         loader.loadAll(this);
        }
 
       return this.tracePoints;


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-10-01  9:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-10-01  9:10 FYI quick ftrace build fix for FC6 Mark Wielaard

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).