1/* PR target/67265 */
2/* Reduced testcase by Johannes Dewender <gnu@JonnyJD.net> */
3
4/* { dg-do compile } */
5/* { dg-options "-O -fstack-check -fPIC" } */
6
7int a, b, c, d, e;
8
9void foo (void)
10{
11  __asm__("" : "+r"(c), "+r"(e), "+r"(d), "+r"(a) : ""(b), "mg"(foo), "mm"(c));
12}
13