This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 package IR.Flat;
2 import java.util.Vector;
3
4 public class FlatAtomicEnterNode extends FlatNode {
5     public FlatAtomicEnterNode() {
6     }
7
8     public String toString() {
9         return "atomicenter";
10     }
11
12     public int kind() {
13         return FKind.FlatAtomicEnterNode;
14     }
15 }