summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/pr30731.cpp
blob: 36da43fe29b08ae6ffd21df7767b179f47e42def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %clang_cc1 -triple i386-pc-win32 -emit-llvm -flto -std=c++11 -o - %s | FileCheck %s

struct A {
  virtual ~A();
};

struct B {};

struct C {
  virtual void f();
};

struct S : A, virtual B, C {
  void f() override;
};

void f(S* s) { s->f(); }

// CHECK-LABEL: define dso_local void @"?f@@YAXPAUS@@@Z"
// CHECK: call
// CHECK: ret void