blob: b4d3bc0322da6d46529b7128aba8628b6294a018 [file] [log] [blame]
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// RUN: cxx_compiler -c cxx_rtti cxx_exceptions %s -o %t.o
// RUN: linker %t.o -o %t%exeext
// RUN: bindump %t.o| FileCheck %s
struct foo { };
struct bar : virtual foo { };
// Section 2.9.2
// Check that the type-info was generated and a v-table was generated
// CHECK-DAG: _ZTV3bar
// CHECK-DAG: _ZTI3bar
int main(int argc, char *argv[]) {
throw bar();
}