diff graal/GraalCompiler/src/com/sun/c1x/ir/ExceptionObject.java @ 2546:e1b3db8031ee

Removed liveness marking.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 21:54:31 +0200
parents 16b9a8b5ad39
children 0c6564c254af
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/ExceptionObject.java	Wed Apr 27 21:38:22 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/ExceptionObject.java	Wed Apr 27 21:54:31 2011 +0200
@@ -28,8 +28,6 @@
 
 /**
  * The {@code ExceptionObject} instruction represents the incoming exception object to an exception handler.
- *
- * @author Ben L. Titzer
  */
 public final class ExceptionObject extends Instruction {
 
@@ -45,7 +43,6 @@
     public ExceptionObject(FrameState stateBefore) {
         super(CiKind.Object);
         setFlag(Flag.NonNull);
-        setFlag(Flag.LiveSideEffect);
         this.stateBefore = stateBefore;
     }