repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* doc/extend.texi (Loop-Specific Pragmas): Document pragma GCC unroll.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
builtin1.C
blob
9947c85bf799b2ea5b51ebda5ff1c964db6dc62f
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"); }