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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr34029-2.c
blob
9ec49ec97fa70da0f197e18922b99a6635840ad1
1
static const char
s
[] =
"ab.cd.efghijk"
;
2
static const char
t
[] =
"abcde"
;
3
4
long
5
foo
(
const char
*
x
)
6
{
7
const char
*
a
;
8
long
b
=
0
;
9
10
a
=
__builtin_strchr
(
s
,
'.'
);
11
return
((
long
)
a
) + (
1
- (
long
)
t
);
12
}