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
2017-12-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr48022-2.c
blob
41fcb533819c9561b66e9f421fcc340afd5dba8e
1
/* PR tree-optimization/48022 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -Wstrict-overflow" } */
4
5
#include <string.h>
6
7
int
8
foo
(
const char
*
x
)
9
{
10
return
strcmp
(
x
,
"/"
);
11
}