diff graal/GraalCompiler/src/com/sun/c1x/ir/Return.java @ 2712:a0dd2b907806

Removed implicit safepoints.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 13:09:37 +0200
parents 0c6564c254af
children 0fe79e7435c3
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/Return.java	Wed May 18 18:40:58 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Return.java	Thu May 19 13:09:37 2011 +0200
@@ -64,8 +64,8 @@
      * @param isSafepoint {@code true} if this instruction is a safepoint instruction
      * @param graph
      */
-    public Return(Value result, boolean isSafepoint, Graph graph) {
-        super(result == null ? CiKind.Void : result.kind, null, isSafepoint, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph);
+    public Return(Value result, Graph graph) {
+        super(result == null ? CiKind.Void : result.kind, null, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph);
         setResult(result);
     }