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

📄 wunused-value-2.c

📁 用于进行gcc测试
💻 C
字号:
/* Test -Wunused-value.  Bug 30729.  *//* { dg-do compile } *//* { dg-options "-Wunused-value" } *//* Make sure va_arg does not cause a value computed is not used warning   because it has side effects.   */#include <stdarg.h>int f(int t, ...){  va_list a;  va_start (a, t);  va_arg(a, int);/* { dg-bogus "value computed is not used" } */  int t1 = va_arg(a, int);  va_end(a);  return t1;}

⌨️ 快捷键说明

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