Re: problem in extended asm

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

 



Ankit Jain wrote:
a simple question: why the followinf instruction
dosent work in gcc
asm("movq i(%1),%%mm0 \n"
    "movq %%mm0,(%0)
    :"=r"(x)
    :"r"(m));           //m is an array

Always include a testcase that can be compiled. A program fragment like this is a very poor bug report, as often the bug is in something you left out.


In this particular case, the problem is likely that you are using arrays, and register allocation can not assign an array to a register, at least not after you have referenced an element of it. Hence, you can not use an 'r' constraint with an array.

Try using a vector type or a union instead of an array.
--
Jim Wilson, GNU Tools Support, http://www.SpecifixInc.com

[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux