or1k-src
or1k-src copied to clipboard
Compile Issue in tc-i386.c
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.