wo_prof_escape_arg_to_local.c
来自「用于进行gcc测试」· C语言 代码 · 共 38 行
C
38 行
/* { dg-options "-O3 -fno-inline -fipa-type-escape -fdump-ipa-all -fipa-struct-reorg -fwhole-program -combine" } *//* { dg-do compile } *//* { dg-do run } */#include <stdlib.h>struct str{ int a; float b;};#define N 1000intfoo (struct str * p_str){ static int sum = 0; sum = sum + p_str->a; return sum;}intmain (){ int i, sum; struct str * p = malloc (N * sizeof (struct str)); for (i = 0; i < N; i++) sum = foo (p+i); return 0;}/*--------------------------------------------------------------------------*//* { dg-final { scan-ipa-dump "is passed to local function...Excluded." "ipa_struct_reorg" } } *//* { dg-final { cleanup-ipa-dump "*" } } */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?