16 lines · cpp
1// RUN: %clang_cc1 -triple i686-linux -emit-llvm %s -o - | FileCheck %s2// RUN: %clang_cc1 -triple i686-windows-gnu -emit-llvm %s -o - | FileCheck %s -check-prefix CHECK-MINGW3// RUN: %clang_cc1 -triple x86_64-windows-gnu -emit-llvm %s -o - | FileCheck %s -check-prefix CHECK-MINGW4// RUN: %clang_cc1 -triple i686-pc-cygwin -emit-llvm %s -o - | FileCheck %s -check-prefix CHECK-MINGW5// RUN: %clang_cc1 -triple x86_64-pc-cygwin -emit-llvm %s -o - | FileCheck %s -check-prefix CHECK-MINGW6 7// CHECK: @_ZTI3foo ={{.*}} constant8// CHECK-MINGW: @_ZTI3foo = linkonce_odr9class foo {10 foo();11 virtual ~foo();12};13 14foo::~foo() {15}16