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

📄 990208-1.c

📁 this is a gcc file, you can download it and learn its usetility, for further detail please look at t
💻 C
字号:
/* As a quality of implementation issue, we should not prevent inlining   of function explicitly marked inline just because a label therein had   its address taken.  */#ifndef NO_LABEL_VALUESstatic void *ptr1, *ptr2;static int i = 1;static __inline__ void doit(void **pptr, int cond){  if (cond) {  here:    *pptr = &&here;  }}static void f(int cond){  doit (&ptr1, cond);}static void g(int cond){  doit (&ptr2, cond);}static void bar(void);int main(){  f (i);  bar();  g (i);#ifdef  __OPTIMIZE__  if (ptr1 == ptr2)    abort ();#endif  exit (0);}void bar(void) { }#else /* NO_LABEL_VALUES */int main() { exit(0); }#endif

⌨️ 快捷键说明

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