diff options
-rw-r--r-- | test/CodeGenCXX/2010-06-21-LocalVarDbg.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CodeGenCXX/2010-06-21-LocalVarDbg.cpp b/test/CodeGenCXX/2010-06-21-LocalVarDbg.cpp new file mode 100644 index 0000000000..2542378e90 --- /dev/null +++ b/test/CodeGenCXX/2010-06-21-LocalVarDbg.cpp @@ -0,0 +1,14 @@ +// 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; +} |