bolt/deps/llvm-18.1.8/clang/test/CodeGenCXX/debug-info-this.cpp
2025-02-14 19:21:04 +01:00

14 lines
204 B
C++

// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
class Class
{
public:
//CHECK: DW_TAG_const_type
int foo (int p) const {
return p+m_int;
}
protected:
int m_int;
};
Class c;