changeset 13194:717de4f0b38f

Merged
author Christian Wirth <christian.wirth@oracle.com>
date Fri, 29 Nov 2013 12:20:12 +0100
parents ada266d00876 (current diff) 824e40a3a4a1 (diff)
children bb992a44734e
files
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/UnsafeCastNode.java	Fri Nov 29 12:19:50 2013 +0100
+++ b/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/UnsafeCastNode.java	Fri Nov 29 12:20:12 2013 +0100
@@ -34,7 +34,11 @@
  * allows unsafe casts "sideways" in the type hierarchy. It does not allow to "drop" type
  * information, i.e., an unsafe cast is removed if the input object has a more precise or equal type
  * than the type this nodes casts to.
+ * 
+ * @deprecated use {@link PiNode}.
  */
+
+@Deprecated
 public class UnsafeCastNode extends FloatingGuardedNode implements LIRLowerable, Virtualizable, GuardingNode, IterableNodeType, Canonicalizable, ValueProxy {
 
     @Input private ValueNode object;