2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / asm3.C
blob5cbf04893d157f3fea4d589d2af017c9e7e93549
1 // { dg-do assemble { target i?86-*-* x86_64-*-* } }
2 // { dg-options "-O2" }
4 typedef unsigned long long uint64;
5 uint64 fstps(void)
7   uint64 ret;
8   asm volatile("fstps %0" : "=m" (ret));
9   return ret;