X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;ds=inline;f=src%2FAST%2Ffunction.h;h=65a4b29fe3607bc75774808ac65ce4e990b06685;hb=c5aa88ae6e416bd79459c619b2a30bf565c50ac0;hp=1ea206935f2708ecf53d080bf4792373a42ee7e5;hpb=8757e01aecc2e4eb4b253609b4b9affca672e903;p=satune.git diff --git a/src/AST/function.h b/src/AST/function.h index 1ea2069..65a4b29 100644 --- a/src/AST/function.h +++ b/src/AST/function.h @@ -2,9 +2,14 @@ #define FUNCTION_H #include "classlist.h" #include "mymemory.h" +#include "ops.h" +#include "structs.h" struct Function { - + ArithOp op; + VectorSet* domains; + Set * range; + OverFlowBehavior overflowbehavior; Table* table; }; #endif