No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / ext / builtin1.C
blob8a53fd6a31531bd6e24c5e0658dc0a7347fc8482
1 // Test whether alternate 'asm' name is applied correctly to
2 // builtin in global namespace
4 // { dg-do compile }
5 // { dg-options "" }
6 // { dg-final { scan-assembler "fancy_printf" } }
8 extern "C" int printf(char*, ...) __asm("_fancy_printf");
10 void foo() { printf("abc"); }