mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-10 14:36:07 +00:00

It is not needed after LLVM r327734. Now it will be easier to copy-paste IR symbol names from Clang. llvm-svn: 327738
13 lines
397 B
C++
13 lines
397 B
C++
// RUN: %clang_cc1 -emit-llvm -fdelayed-template-parsing -std=c++11 -o - -triple=i386-pc-win32 %s > %t
|
|
// RUN: FileCheck %s < %t
|
|
|
|
// PR20671
|
|
namespace vtable_referenced_from_template {
|
|
struct ImplicitCtor {
|
|
virtual ~ImplicitCtor();
|
|
};
|
|
template <class T> void foo(T t) { new ImplicitCtor; }
|
|
void bar() { foo(0); }
|
|
// CHECK: store {{.*}} @"??_7ImplicitCtor@vtable_referenced_from_template@@6B@"
|
|
}
|