static4.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 16 行
C
16 行
// PR 13898// Make sure the two X variables get assigned unique assembler names// if they are promoted to static storage.// { dg-do compile }int g(int i) { if (i<1) { const int x[3] = { 1,2,3 }; return x[i]; } else { const int x[3] = { 4,5,6 }; return x[i]; } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?