20060210-2.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 20 行

C
20
字号
/* APPLE LOCAL file 4356747 stack realign *//* { dg-do compile { target i?86-*-darwin* i[6789]86-*-* } } *//* APPLE LOCAL Note: if/when this file arrives in a merge, the FSF   version probably won't have the -fnested-functions option, and it's   required on OS X.  *//* { dg-options "-std=gnu99 -fnested-functions" } */#include <stdio.h>#include <stdlib.h>intouter_function (int x, int y){  int __attribute__ ((__noinline__, __force_align_arg_pointer__))  nested_function (int x, int y)    { /* { dg-error "force_align_arg_pointer not supported for nested functions" } */      return (x + y);    }  return (3 + nested_function (x, y));}

⌨️ 快捷键说明

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