20030728-1.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 48 行
C
48 行
/* { dg-do compile } *//* { dg-options "-O2 -fdump-tree-optimized" } */ union tree_node;typedef union tree_node *tree;enum tree_code{ ARRAY_TYPE, LAST_AND_UNUSED_TREE_CODE};struct tree_common{ enum tree_code code:8;};union tree_node{ struct tree_common common;};intobjects_must_conflict_p (t1, t2) tree t1, t2;{ if ((t1->common.code == ARRAY_TYPE) != (t2 && t2->common.code == ARRAY_TYPE)) return 11; return foo (t2 ? get_alias_set (t2) : 0);}/* There should be three assignments of variables to the value zero. *//* { dg-final { scan-tree-dump-times " = 0" 3 "optimized"} } */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?