⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wo_prof_escape_arg_to_local.c

📁 用于进行gcc测试
💻 C
字号:
/* { 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -