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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ubsan
/
cxx11-shift-1.C
blob
a5c0e330ab3410574b6e906fd4681a16eaada0b1
1
/* { dg-do run } */
2
/* { dg-options "-fsanitize=shift -w -std=c++11" } */
3
4
int
5
main (void)
6
{
7
int a = 1;
8
a <<= 31;
9
}