Added missing memory attribute to asm instruction.

From-SVN: r88612
This commit is contained in:
Kenneth Zadeck 2004-10-06 16:54:58 +00:00
parent 8470634361
commit 71dfe05195
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ main()
"call %P0\n\t"
"addl $12, %%esp\n\t"
"popl %%ebp"
: : "i"(ustrzcat));
: : "i"(ustrzcat) : "memory" );
return 0;
}