20040313-1.c
来自「用于进行gcc测试」· C语言 代码 · 共 17 行
C
17 行
/* { dg-do compile } *//* { dg-options "-O3" } *//* Test provided by Volker Reichelt in PR 14553. The redundant PHI node elimination pass was not using the right API functions to propagate pointers, which resulted in dereferenced pointers that did not have memory tags associated with them. */void foo(int* p){ int i; for (i=1; i>0; --i, ++p) *p=0;}void bar(int* p) { foo(p); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?