X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satune.git;a=blobdiff_plain;f=src%2FAST%2Ffunction.h;h=65a4b29fe3607bc75774808ac65ce4e990b06685;hp=da5087b579e06373e3e25c193f2f37d79c5f77d2;hb=c5aa88ae6e416bd79459c619b2a30bf565c50ac0;hpb=2fdb3e8b65ae7e1490997e5df9ad8cc0929e1589 diff --git a/src/AST/function.h b/src/AST/function.h index da5087b..65a4b29 100644 --- a/src/AST/function.h +++ b/src/AST/function.h @@ -2,7 +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