YouCompleteMe/cpp/llvm/tools/clang/test/CodeGenCXX/2010-06-21-LocalVarDbg.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

15 lines
311 B
C++

// RUN: %clang_cc1 -g -emit-llvm %s -o - | FileCheck %s
// 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.
// CHECK-NOT: llvm.dbg.lv.~A
class A {
public:
~A() { int i = 0; i++; }
};
int foo(int i) {
A a;
return 0;
}