anonunion1.c

来自「用于进行gcc测试」· C语言 代码 · 共 26 行

C
26
字号
// PR c++/5748// This testcase ICEd because used flag from the anon union variables// was not propagated back to the anon union itself, causing addressof// not to be replaced with stack slot.// { dg-do compile }// { dg-options "-O2" }struct A {  A ();  ~A ();  int foo ();  int bar (void *x, int y);};int A::foo(){  union {    int a;    int b;  };  if (bar (&a, sizeof (int)) != 32)    return 16;  return 0;}

⌨️ 快捷键说明

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