This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

2.96 19991025 x86 minor codegen bug


gcc.c-torture/compile/980506-1.c and gcc.c-torture/compile/980701-1.c are
failing with recent CVS sources dues to generating:

        andl    $255, %ax

for which a recent gas rightly issues a warning.  It should be either
"andw $255, %ax" or "andl $255, %eax"  (or even better "movb $0, %ah", but
that's another issue entirely)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]