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

📄 anon3.c

📁 linux下编程用 编译软件
💻 C
字号:
// { dg-do assemble  }// Copyright (C) 2001 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 6 Jun 2001 <nathan@codesourcery.com>// Bug 2914. New types can be created in a static member// initializer. These should not be injected into the member's class's// scope.class DoubleSupport{  public:  static void toDouble();    static const double s_NaN;  static const double s_positiveInfinity;  static const double s_negativeInfinity;  static const double s_positiveZero;  static const double s_negativeZero;  static const unsigned long* s_NaNFirstDWORD;  static const unsigned long* s_NaNSecondDWORD;};const double DoubleSupport::s_positiveInfinity =(__extension__ ((union { unsigned char __c[8]; double __d; })  { __c: { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f } }).__d);struct other {};voidDoubleSupport::toDouble(){}

⌨️ 快捷键说明

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