Revision: 3345
http://jnode.svn.sourceforge.net/jnode/?rev=3345&view=rev
Author: lsantha
Date: 2007-07-01 02:07:44 -0700 (Sun, 01 Jul 2007)
Log Message:
-----------
Minimal XMLisation of comments.
Modified Paths:
--------------
trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java
Modified: trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java 2007-07-01 09:03:38 UTC (rev 3344)
+++ trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java 2007-07-01 09:07:44 UTC (rev 3345)
@@ -457,7 +457,7 @@
*/
public void endInlinedMethod(VmMethod previousMethod) {
if (log) {
- os.log("End of inlined method");
+ os.log("End of inlined method</inline>");
}
// Do some housekeeping
helper.setMethod(previousMethod);
@@ -1017,7 +1017,7 @@
*/
public void startInlinedMethodCode(VmMethod inlinedMethod, int newMaxLocals) {
if (log) {
- os.log("Start of inlined method code");
+ os.log("<inline name=\""+inlinedMethod.getName() + "\">Start of inlined method code");
}
if (debug) {
BootLog.debug("startInlinedMethodCode(" + inlinedMethod + ")");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|