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