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
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
gcc-torture-execute-pr66757.c
blob
85899365cfa7d85e78a513a1ff4213f61ed3ff9b
1
/*
2
pr66757.c from the execute part of the gcc torture tests.
3
*/
4
5
#include <testfwk.h>
6
7
/* PR tree-optimization/66757 */
8
/* Testcase by Zhendong Su <su@cs.ucdavis.edu> */
9
10
int
a
,
b
;
11
12
void
13
testTortureExecute
(
void
)
14
{
15
unsigned int
t
= (
unsigned char
) (~
b
);
16
17
if
((
t
^
1
) /
255
)
18
ASSERT
(
0
);
19
20
return
;
21
}