Hi!
tcc don't understand xmm1 register (but understand mm1)
A test program:
int main (void)
{
    long long d;
    __asm__ __volatile__( "movq %0, %%mm1" : "=m" (d) );
    __asm__ __volatile__( "movq %0, %%xmm1" : "=m" (d) );
    return 0;
}
// test.c:5: error: bad operand with opcode 'movq'

_______________________________________________
Tinycc-devel mailing list
Tinycc-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to