Failing on bots in unobvious ways.
+++ /dev/null
-// RUN: %clang_cc1 -emit-llvm-only -triple %itanium_abi_triple %s -emit-llvm -o - %s | FileCheck %s
-
-struct A {};
-struct alignas(32) B : virtual A {
- char c[32];
-};
-struct Pad {
- char c[7];
-};
-struct C : B, Pad, virtual A {};
-
-struct X {
- virtual A &f();
-};
-struct U {
- virtual ~U();
-};
-C c;
-struct Y : U, X {
- virtual B &f() override { return c; }
-};
-
-Y y;
-
-// FIXME: The return type should be align 1 dereferenceable(1) %{{[^*]+}}*
-// CHECK: define linkonce_odr %{{[^*]+}}* @_ZTchn8_v0_n24_N1Y1fEv(%{{[^*]+}}* %this) unnamed_addr #1 comdat align 2 {
+++ /dev/null
-// RUN: %clang_cc1 -emit-llvm-only -triple %itanium_abi_triple %s -emit-llvm -o - %s | FileCheck %s
-
-class Base1 {
- virtual void Foo1();
-};
-
-class Base2 {
- virtual void Foo2();
-};
-
-class alignas(16) Obj : public Base1, public Base2 {
- void Foo1() override;
- void Foo2() override;
- ~Obj();
-};
-
-void Obj::Foo1() {}
-void Obj::Foo2() {}
-
-// CHECK: define {{.*}}void @_ZN3Obj4Foo2Ev(%{{[^*]+}}* nonnull align 16 dereferenceable(16) %this) unnamed_addr #0 align 2 {
-
-// FIXME: the argument should be %class.Base2.2* nonnull dereferenceable(8) %this
-// CHECK: define dso_local void @_ZThn8_N3Obj4Foo2Ev(%{{[^*]+}}* %this) unnamed_addr #1 align 2 {
-
-// CHECK: tail call void @_ZN3Obj4Foo2Ev(%{{[^*]+}}* nonnull align 16 dereferenceable(16) %2)