Commit e95705f0 authored by Jan Maria Matejka's avatar Jan Maria Matejka
Browse files

Merge branch 'master' into int-new

parents d1ba927b 74bfd2f9
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -637,10 +637,6 @@ interpret(struct f_inst *what)
  for ( ; what; what = what->next) {
  res.type = T_VOID;
  switch(what->fi_code) {
  case FI_COMMA:
    TWOARGS;
    break;

/* Binary operators */
  case FI_ADD:
    TWOARGS_C;
@@ -1607,8 +1603,7 @@ i_same(struct f_inst *f1, struct f_inst *f2)
    return 1;

  switch(f1->fi_code) {
  case FI_COMMA: /* fall through */
  case FI_ADD:
  case FI_ADD: /* fall through */
  case FI_SUBTRACT:
  case FI_MULTIPLY:
  case FI_DIVIDE:
+0 −1
Original line number Diff line number Diff line
@@ -18,7 +18,6 @@

#define FI__TWOCHAR(a,b)	((a<<8) | b)
#define FI__LIST \
  F(FI_COMMA,			  0, ',') \
  F(FI_ADD,			  0, '+') \
  F(FI_SUBTRACT,		  0, '-') \
  F(FI_MULTIPLY,		  0, '*') \