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
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
debug-info-codeview-template-type.cpp
blob
be371904ac578a0ff714291aa206d5103666cbb4
1
// RUN: %clang -std=c++11 -g -target x86_64-windows-msvc -S -emit-llvm -o - %s | FileCheck %s
2
3
template
<
unsigned
N
>
4
void
foo
() {
5
}
6
7
void
instantiate_foo
() {
8
foo
<
10
>();
9
// CHECK: foo<10>
10
foo
<
true
>();
11
// CHECK: foo<1>
12
}