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]
Other format: [Raw text]

Re: c++/5000: volatile asm code fails in template class member functions


Synopsis: volatile asm code fails in template class member functions

State-Changed-From-To: open->analyzed
State-Changed-By: rodrigc
State-Changed-When: Mon Dec  3 17:17:36 2001
State-Changed-Why:
    Compiling your testcase with gcc 3.0 yielded the following
    compilation error:
    
    b.cc: In function `int main()':
    b.cc:5: invalid `asm': operand number missing after %-letter
    b.cc:5: invalid `asm': operand number missing after %-letter
    
    If I changed the __asm__ line in your code to:
    
       __asm__ __volatile__ ("movl %%eax,%%eax");    
    
    Then it compiled without problem.
    
    Please see http://www.linuxassembly.org for a good tutorial
    on the asm syntax.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&pr=5000&database=gcc


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