This reverts commit d618f1c3b1.
This commit wasn't reviewed ahead of time and significant concerns were
raised immediately after it landed. According to our developer policy
this warrants immediate revert of the commit.
https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy
Differential Revision: https://reviews.llvm.org/D155509
16 lines
221 B
C++
16 lines
221 B
C++
// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
|
|
// Radar 9239104
|
|
class Class
|
|
{
|
|
public:
|
|
//CHECK: DW_TAG_const_type
|
|
int foo (int p) const {
|
|
return p+m_int;
|
|
}
|
|
|
|
protected:
|
|
int m_int;
|
|
};
|
|
|
|
Class c;
|