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
d: Fix gdc -O2 -mavx generates misaligned vmovdqa instruction [PR114171]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
bool4.C
blob
03b670c394ec92f5640a199b335d848d0a4db7bc
1
// { dg-do run }
2
// Test for allowing conversion to bool.
3
4
struct A { };
5
6
int main ()
7
{
8
bool b = (void*)0;
9
b = (int A::*)0;
10
b = (int (A::*)())0;
11
}