OSDN Git Service

* c-c++-common/raw-string-1.c: Combine C and C++ raw string tests.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / builtin1.C
1 // Test whether alternate 'asm' name is applied correctly to
2 // builtin in global namespace
3
4 // { dg-do compile }
5 // { dg-options "" }
6 // { dg-final { scan-assembler "fancy_printf" } }
7
8 extern "C" int printf(const char*, ...) __asm("_fancy_printf");
9
10 void foo() { printf("abc"); }