single bit bitfield needs to be unsigned

This commit is contained in:
Quentin Carbonneaux 2015-07-20 06:02:46 -04:00
parent bba9cf47c9
commit 186e68a8d3
2 changed files with 2 additions and 2 deletions

View file

@ -98,7 +98,7 @@ enum {
struct OpDesc {
int arity;
int commut:1;
uint commut:1;
char *name;
};