diff graal/com.oracle.truffle.api/src/com/oracle/truffle/api/intrinsics/TruffleIntrinsics.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents a4b84ba6dc2e
children 07f8d136a05e
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/intrinsics/TruffleIntrinsics.java	Wed Jan 23 16:34:38 2013 +0100
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/intrinsics/TruffleIntrinsics.java	Wed Jan 23 16:34:57 2013 +0100
@@ -28,14 +28,16 @@
 public final class TruffleIntrinsics {
 
     /**
-     * Specifies that the compiler should put a deoptimization point at this position that will continue execution in the interpreter.
-     * Should be used to cut off cold paths that should not be part of the compiled machine code.
+     * Specifies that the compiler should put a deoptimization point at this position that will
+     * continue execution in the interpreter. Should be used to cut off cold paths that should not
+     * be part of the compiled machine code.
      */
     public static void deoptimize() {
     }
 
     /**
-     * Checks whether the Thread has been interrupted in the interpreter in order to avoid endless loops. The compiled code may choose a more efficient implementation.
+     * Checks whether the Thread has been interrupted in the interpreter in order to avoid endless
+     * loops. The compiled code may choose a more efficient implementation.
      */
     public static void checkThreadInterrupted() {
         if (Thread.currentThread().isInterrupted()) {