You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
309 B
12 lines
309 B
// RUN: %clang_cc1 -triple i386-linux -emit-llvm %s -o - | FileCheck %s
|
|
// RUN: %clang_cc1 -triple i386-windows-gnu -emit-llvm %s -o - | FileCheck %s -check-prefix CHECK-MINGW
|
|
// CHECK: @_ZTI3foo = constant
|
|
// CHECK-MINGW: @_ZTI3foo = linkonce_odr
|
|
class foo {
|
|
foo();
|
|
virtual ~foo();
|
|
};
|
|
|
|
foo::~foo() {
|
|
}
|