repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
gcc-torture-execute-widechar-1.c
blob
337910a7020a3f71d39fc8c94a38df2c975453a6
1
/*
2
widechar-1.c from the execute part of the gcc torture tests.
3
*/
4
5
#include <testfwk.h>
6
7
#define C L
'
\400
'
8
9
#if C
10
#define zero (!C)
11
#else
12
#define zero C
13
#endif
14
15
void
16
testTortureExecute
(
void
)
17
{
18
if
(
zero
!=
0
)
19
ASSERT
(
0
);
20
return
;
21
}