summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2010-06-21-LocalVarDbg.cpp
blob: 48d821508dd62a0c3574b6b646b79861f0fa0c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %llvmgxx -g -Os -S %s -o - | llvm-as -disable-output
// Do not use function name to create named metadata used to hold
// local variable info. For example. llvm.dbg.lv.~A is an invalid name.
class A {
public:
  ~A() { int i = 0; i++; }
};

int foo(int i) {
  A a;
  return 0;
}