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

📄 vla-2.c

📁 linux下的gcc编译器
💻 C
字号:
/* { dg-do compile } *//* { dg-options "-std=gnu99" } *//* These are crash tests related to PR middle-end/6994; see also   g++.dg/ext/vla1.C.  Note that at present A and C cannot be inlined.  */static inline void A (int i){  struct S { int ar[1][i]; } s;  s.ar[0][0] = 0;}void B(void){  A(23);}static inline void C (int i){  union U { int ar[1][i]; } u;  u.ar[0][0] = 0;}void D(void){  C(23);}

⌨️ 快捷键说明

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