Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / debug-info-this.cpp
blobf1cd4aa8c090e46fe49c26d3757caab0c24019d8
1 // RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
2 class Class
4 public:
5 //CHECK: DW_TAG_const_type
6 int foo (int p) const {
7 return p+m_int;
8 }
10 protected:
11 int m_int;
14 Class c;