Beispiel #1
0
 public override void visit(DReturn ret)
 {
     if (graph_.function != null)
     {
         DNode    input = ret.getOperand(0);
         TypeUnit tu    = TypeUnit.FromTag(graph_.function.returnType);
         input.typeSet.addType(tu);
     }
 }