📄 20030823-1.c
字号:
struct A{ int a;};int foo (struct A *a){ static int c = 30; int x; a->a = c; /* Dominator optimizations will replace the use of 'a->a' with 'c', but they won't copy the virtual operands for 'c' from its originating statement. This exposes symbol 'c' without a correct SSA version number. */ x = a->a; return x;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -