⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 empty3.c

📁 linux下编程用 编译软件
💻 C
字号:
// { dg-do assemble  }// Copyright (C) 2001 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 12 Apr 2001 <nathan@codesourcery.com>// Check we deal with aligning virtual bases after a trailing empty// base class properlystruct A {};struct B1 : A {};struct B2 : A {};struct B3 : A {};struct C : B1, B2, virtual B3 {};int main (){#if defined (__GXX_ABI_VERSION) && __GXX_ABI_VERSION >= 100  C c;  if (((char *)static_cast <B3 *> (&c) - (char *)&c) % __alignof__ (C))    return 1;#endif  return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -