From: Kenneth Zadeck Date: Wed, 6 Oct 2004 16:54:58 +0000 (+0000) Subject: Added missing memory attribute to asm instruction. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=71dfe05195d2604f3d512c16a92c03c567fb7bc3;p=gcc.git Added missing memory attribute to asm instruction. From-SVN: r88612 --- diff --git a/gcc/testsuite/gcc.dg/20011119-1.c b/gcc/testsuite/gcc.dg/20011119-1.c index 5b3c00cd36f..0df09a3f778 100644 --- a/gcc/testsuite/gcc.dg/20011119-1.c +++ b/gcc/testsuite/gcc.dg/20011119-1.c @@ -74,7 +74,7 @@ main() "call %P0\n\t" "addl $12, %%esp\n\t" "popl %%ebp" - : : "i"(ustrzcat)); + : : "i"(ustrzcat) : "memory" ); return 0; }