📄 20030922-1.c
字号:
/* { dg-do compile } *//* { dg-options "-O1 -fdump-tree-dom3" } */ extern void abort (void);union tree_node;typedef union tree_node *tree;enum tree_code{ BIND_EXPR,};struct tree_common{ enum tree_code code:8;};union tree_node{ struct tree_common common;};treevoidify_wrapper_expr (tree wrapper){ switch (wrapper->common.code) { case BIND_EXPR: if (wrapper->common.code != BIND_EXPR) abort (); }}/* There should be no IF conditionals. *//* { dg-final { scan-tree-dump-times "if " 0 "dom3"} } *//* { dg-final { cleanup-tree-dump "dom3" } } */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -