Remove IsUnary() and IsBinary()

- This information is already stored in the node's NodeType field, so
  there's no reason to go do a table lookup for it elsewhere. Must have
  been a brain fart when I wrote them in the first place.
This commit is contained in:
Randy Heit 2013-11-01 21:28:00 -05:00
commit b66de4116d
4 changed files with 57 additions and 70 deletions

View file

@ -12,7 +12,7 @@
ZCC_OpInfoType ZCC_OpInfo[PEX_COUNT_OF] =
{
#define xx(a,n) { n, #a, NULL },
#define xx(a,z) { #a, NULL },
#include "zcc_exprlist.h"
};