Skip to content

Commit

Permalink
Fix #14. Add prod, min, land, band, lor, bor, lxor, bxor ops and also…
Browse files Browse the repository at this point in the history
… short,float,long types
  • Loading branch information
vc8 committed Mar 18, 2014
1 parent 72879a3 commit c32f276
Show file tree
Hide file tree
Showing 2 changed files with 660 additions and 14 deletions.
10 changes: 9 additions & 1 deletion inc/accumulator.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,15 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
typedef enum {
ACCUM_OP_NONE,
ACCUM_OP_PLUS,
ACCUM_OP_MAX
ACCUM_OP_PROD,
ACCUM_OP_MIN,
ACCUM_OP_MAX,
ACCUM_OP_LAND,
ACCUM_OP_BAND,
ACCUM_OP_LOR,
ACCUM_OP_BOR,
ACCUM_OP_LXOR,
ACCUM_OP_BXOR
} accum_op_t;

/**
Expand Down
Loading

0 comments on commit c32f276

Please sign in to comment.