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
testsuite: Skip analyzer tests on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
fmacro-prefix-map.c
blob
db51587cb4f7e33ebf83f09465acf4e8ac4c01bd
1
/* Test __builtin_FILE(). */
2
/* { dg-do run } */
3
/* { dg-options "-fmacro-prefix-map==MACRO-PREFIX" } */
4
5
#include <stdio.h>
6
7
int
main
()
8
{
9
printf
(
"__builtin_FILE starts with %s
\n
"
,
__builtin_FILE
());
10
}
11
12
/* { dg-output "__builtin_FILE starts with MACRO-PREFIX" } */