diff graal/GraalCompiler/src/com/sun/c1x/ir/package-info.java @ 2657:4a6518c4d17d

Removed need for base instruction. Cleanup.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 11 May 2011 16:10:49 +0200
parents 16b9a8b5ad39
children
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/package-info.java	Wed May 11 15:23:07 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/package-info.java	Wed May 11 16:10:49 2011 +0200
@@ -22,13 +22,6 @@
  */
 
 /**
- * @author Ben Titzer
- *
- *         Classes that define the (High-level) Intermediate Representation (HIR) if the C1X compiler.
- *
- *         HIR instances are created by processing Java bytecodes and are Directed Acyclic Graphs (DAGs). All nodes in
- *         an HIR graph are concrete subclasses of the abstract class {@link Value}. This indicates a property of HIR,
- *         namely that everything is a value, including instructions. This allows an operand for an instruction node to
- *         refer directly to the node that generated the value, which might, for example, be another instruction.
+ * High-level intermediate representation (HIR).
  */
 package com.sun.c1x.ir;