repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
cxx-linkage-cache.h
blob
df829279761ae7d7c01c1c108841dfbd223673fa
1
// Reduced from a crash encountered with a modularized libc++, where
2
// we would try to compute the linkage of a declaration before we
3
// finish loading the relevant pieces of it.
4
inline
namespace
D
{
5
template
<
class
>
6
struct
U
{
7
friend
bool
f
(
const
U
&);
8
};
9
10
template class
U
<
int
>;
11
}