changeset 18131:85cec9cab17b

Truffle: format fix.
author Christian Humer <christian.humer@gmail.com>
date Tue, 21 Oct 2014 00:30:06 +0200
parents b4e38f4ca414
children b00fc4dc6dc2
files graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Instrument.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Instrument.java	Tue Oct 21 00:22:51 2014 +0200
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Instrument.java	Tue Oct 21 00:30:06 2014 +0200
@@ -49,8 +49,8 @@
  * <li>Minimize computation in standard execution paths.</li>
  * <li>If runtime calls must be made back to a tool, construct the instrument with a callback stored
  * in a {@code final} field.</li>
- * <li>Tool methods called by the instrument should be annotated as {@link TruffleBoundary} to prevent them
- * from being inlined into fast execution paths.</li>
+ * <li>Tool methods called by the instrument should be annotated as {@link TruffleBoundary} to
+ * prevent them from being inlined into fast execution paths.</li>
  * <li>If computation in the execution path is needed, and if performance is important, then the
  * computation is best expressed as a guest language AST and evaluated using standard Truffle
  * mechanisms so that standard Truffle optimizations can be applied.</li>