repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
ext
/
builtin1.C
blob
8a53fd6a31531bd6e24c5e0658dc0a7347fc8482
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(char*, ...) __asm("_fancy_printf");
9
10
void foo() { printf("abc"); }