Merge branches/gcc-4_8-branch rev 216856
[official-gcc.git] / gcc-4_8-branch / gcc / testsuite / gcc.target / aarch64 / madd_after_asm_1.c
blob523941d479211f893e8411bb14931bf139f2a642
1 /* { dg-do assemble } */
2 /* { dg-options "-O2 -mfix-cortex-a53-835769" } */
4 int
5 test (int a, double b, int c, int d, int e)
7 double result;
8 __asm__ __volatile ("// %0, %1"
9 : "=w" (result)
10 : "0" (b)
11 : /* No clobbers */
13 return c * d + e;