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-this.cpp
blob
a2842d021783ee3c55b974c4bf1eeaa910d172ca
1
// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
2
// Radar 9239104
3
class
Class
4
{
5
public
:
6
//CHECK: DW_TAG_const_type
7
int
foo
(
int
p
)
const
{
8
return
p
+
m_int
;
9
}
10
11
protected
:
12
int
m_int
;
13
};
14
15
Class c
;