or1k-src icon indicating copy to clipboard operation
or1k-src copied to clipboard

Compile Issue in tc-i386.c

Open bit0fun opened this issue 8 years ago • 0 comments

On line 6142, column 31, gcc throws an error complaining about the '!=' comparison in the expression '&& !op.bitfield.reg64 != 1` I changed it to '&& ((!op.bitfield.reg64) != 1)' which then make can continue compiling without errors.

bit0fun avatar Sep 16 '17 18:09 bit0fun