OSDN Git Service

* class.c (resolve_address_of_overloaded_function): Don't
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / asm3.C
1 // { dg-do assemble { target i?86-*-* x86_64-*-* } }
2 // { dg-options "-O2" }
3
4 typedef unsigned long long uint64;
5 uint64 fstps(void)
6 {
7   uint64 ret;
8   asm volatile("fstps %0" : "=m" (ret));
9   return ret;
10 }