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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
overload13.C
blob
54ab404af11f1ba3a1e1953b5636de29e46722d1
1
// { dg-do assemble }
2
// Origin: Nathan Sidwell <nathan@codesourcery.com>
3
4
struct A {
5
bool operator== (A const &);
6
operator bool () const;
7
operator int * () const;
8
};
9
10
bool foo (A &a1, A &a2)
11
{
12
return a1 == a2;
13
}