i386: Use BLKmode for {ld,st}tilecfg
[official-gcc.git] / gcc / testsuite / gcc.dg / lto / pr59626_0.c
blob9e9171de73a03d15e60aa149a0ea9d9800fb1430
1 /* { dg-lto-do run } */
3 #define ASMNAME(cname) ASMNAME2 (__USER_LABEL_PREFIX__, cname)
4 #define ASMNAME2(prefix, cname) STRING (prefix) cname
5 #define STRING(x) #x
7 int __atoi (const char *) __asm__(ASMNAME ("atoi"));
8 extern inline __attribute__((always_inline,gnu_inline))
9 int atoi (const char *x)
11 return __atoi (x);
14 int bar (int (*)(const char *));
16 int main()
18 return bar (atoi);