pr18628.c
来自「用于进行gcc测试」· C语言 代码 · 共 32 行
C
32 行
/* { dg-do link } *//* { dg-options "-O2" } *//* PR middle-end/18628 exposed a problem in which cse folded a load from a jump table into the label that was the target of the branch. Unfortunately, the indirect jump was moved to a different basic block, and the LABEL_REF copied to the register wasn't enough to keep the cfg from optimizing the otherwise-unused label away. So we ended up with a dangling reference to the label. */int i;int main(){ for (;;) { switch (i) { case 0: case 1: return 1; case 2: case 3: return 0; case 5: --i; } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?