debug4.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 18 行
C
18 行
/* PR debug/5770 This testcase failed at -O -g because the following constants were optimized away since they were never referenced, but since they are variables with initializers, rtl_for_decl_location run expand_expr on their initializers and returned it. This lead to references to constants which were deferred and thus never emitted. *//* { dg-do link } */static const char foo[] = "foo string";static const char bar[30] = "bar string";static const wchar_t baz[] = L"baz string";intmain (){}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?