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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
cond3.C
blob
1fe95fcbb6ec824e166982d7bf8b87361fabac75
1
// { dg-do assemble }
2
// Origin: Loring Holden <lsh@cs.brown.edu>
3
4
class Wtransf {};
5
6
const Wtransf Identity2 = Wtransf ();
7
8
class HELPER {
9
public:
10
int current() const { return 0; }
11
};
12
13
void
14
problem_function()
15
{
16
HELPER tm;
17
Wtransf delta = (tm.current()) ? Identity2 : Wtransf();
18
}