view gcc/testsuite/g++.target/i386/pr90303.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 1830386684a0
children
line wrap: on
line source

// PR tree-optimization/90303
// { dg-do compile { target ia32 } }
// { dg-additional-options "-O2" }

struct A { virtual void foo (); };
template <class> class B : A {};
typedef void (__attribute__((fastcall)) F) ();
B<F> e;