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
Add malloc predictor (PR middle-end/83023).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ubsan
/
c99-wrapv-shift-1.c
blob
51910da2c80369b50110e006528278b1905423a4
1
/* { dg-do run } */
2
/* { dg-options "-fsanitize=shift -fwrapv -w -std=c99" } */
3
4
int
5
main
(
void
)
6
{
7
int
a
= -
42
;
8
a
<<
1
;
9
}