Displaying 3 results from an estimated 3 matches for "memprogramstack_2e_5872".
2007 May 29
4
[LLVMdev] Code generation issues
...9;S' in 'asm'
This is the offending line (notice the "S" on the last line):
__asm__ volatile ("\tpushal\t\t\t\t\n\tmovl %0,%%esi\t\t\n\tmovl %
1,%%edi\t\t\n\tcall *%2\t\t\t\n\tmovl %%esi,%0\t\t\n\tmo\
vl %%edi,%1\t\t\n\tpopal\t\t\t\t\n"
:"=m"(memProgramStack_2E_5872),"=m"(memOpStack_2E_5873)
:"m"(memEntryPoint_2E_5874),"m"(memProgramStack_2E_5872),"m"(me
mOpStack_2E_5873)
:"D","S");
Apparently, leaving out "S" helps (compiling the .c file works), but
what does it do and...
2007 May 30
0
[LLVMdev] Code generation issues
...> This is the offending line (notice the "S" on the last line):
>
> __asm__ volatile ("\tpushal\t\t\t\t\n\tmovl %0,%%esi\t\t\n\tmovl %
> 1,%%edi\t\t\n\tcall *%2\t\t\t\n\tmovl %%esi,%0\t\t\n\tmo\
> vl %%edi,%1\t\t\n\tpopal\t\t\t\t\n"
> :"=m"(memProgramStack_2E_5872),"=m"(memOpStack_2E_5873)
> :"m"(memEntryPoint_2E_5874),"m"(memProgramStack_2E_5872),"m"(me
> mOpStack_2E_5873)
> :"D","S");
>
> Apparently, leaving out "S" helps (compiling the .c file works), but...
2007 May 29
0
[LLVMdev] Code generation issues
...gt; This is the offending line (notice the "S" on the last line):
>
> __asm__ volatile ("\tpushal\t\t\t\t\n\tmovl %0,%%esi\t\t\n\tmovl %
> 1,%%edi\t\t\n\tcall *%2\t\t\t\n\tmovl %%esi,%0\t\t\n\tmo\
> vl %%edi,%1\t\t\n\tpopal\t\t\t\t\n"
> :"=m"(memProgramStack_2E_5872),"=m"(memOpStack_2E_5873)
> :"m"(memEntryPoint_2E_5874),"m"(memProgramStack_2E_5872),"m"(me
> mOpStack_2E_5873)
> :"D","S");
>
> Apparently, leaving out "S" helps (compiling the .c file works), bu...