tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Tinycc-devel] error: bad operand with opcode 'movq'


From: Sergey Korshunoff
Subject: [Tinycc-devel] error: bad operand with opcode 'movq'
Date: Tue, 3 May 2016 19:59:21 +0300

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'



reply via email to

[Prev in Thread] Current Thread [Next in Thread]