Migrate test from llvm/test/FrontendC++ and FileCheckize.

llvm-svn: 137770
This commit is contained in:
Eric Christopher 2011-08-16 21:41:48 +00:00
parent 88fa0f0eb7
commit 38a7c55cae
1 changed files with 14 additions and 0 deletions

View File

@ -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;
}