X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satune.git;a=blobdiff_plain;f=src%2FAST%2Ffunction.h;h=65a4b29fe3607bc75774808ac65ce4e990b06685;hp=82379f782d6db72c06ef53f6783237e6841323b2;hb=c5aa88ae6e416bd79459c619b2a30bf565c50ac0;hpb=f157726420ac92c6b29ab7b552682629d0f3c4a4 diff --git a/src/AST/function.h b/src/AST/function.h index 82379f7..65a4b29 100644 --- a/src/AST/function.h +++ b/src/AST/function.h @@ -4,11 +4,12 @@ #include "mymemory.h" #include "ops.h" #include "structs.h" + struct Function { - enum ArithOp op; - VectorSet* domains; - Set * range; - enum OverFlowBehavior overflowbehavior; - Table* table; + ArithOp op; + VectorSet* domains; + Set * range; + OverFlowBehavior overflowbehavior; + Table* table; }; #endif