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
Document gcov-io (PR gcov-profile/84735).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
cpp
/
ucnid-12.c
blob
2932768607f50dcb0559f95acf9d1d1cb20a6ad4
1
/* Test spelling differences in UCNs in macro definitions still count
2
as the same identifier for macro expansion. */
3
/* { dg-do compile } */
4
/* { dg-options "-std=c99 -pedantic-errors" } */
5
6
#define m1\u00c1
7
#ifndef m1\u00C1
8
#error not defined
9
#endif
10
11
#define m2(\u00c1) \u00C1
12
13
int
i
=
m2
(
0
);