20031125-2.c

来自「用于进行gcc测试」· C语言 代码 · 共 21 行

C
21
字号
/* { dg-do compile } *//* { dg-options "-O2" } */struct BlobSpan {	int right;};/* This test makes sure we don't accidently cause a bad insertion to occur   by choosing the wrong variable name so that we end up with a use not   dominated by a def. */void render_blob_line(struct BlobSpan blobdata) {	int buf[4 * 8];	int *data = buf;	int i, n = 0;	if (blobdata.right)		n++;	if (n)		for (; i < 2 * n;)			data[i] = 0;	n *= 2;	for (; n;) ;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?