PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / g++.dg / pr55604.C
blobf67a1b4ef149aa1a136288614ec4bff8281fd3e4
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-rtl-reload" } */
4 int
5 main ()
7   char s[10];
8   const int t = (__builtin_memcpy (s, "Hello", 6), 5);
9   __builtin_printf ("%d %s\n", t, s);
10   return 0;