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

📄 compare4.c

📁 this is a gcc file, you can download it and learn its usetility, for further detail please look at t
💻 C
字号:
/* Test for a bogus warning on comparison between signed and unsigned.   Origin: Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 5/13/2001.  *//* { dg-do compile } *//* { dg-options "-Wsign-compare" } */extern void bar(void);int foo(int x, int y, unsigned u){  /* A COMPOUND_EXPR is non-negative if the last element is known to     be non-negative.  */  if (u < (bar(), -1)) /*{ dg-warning "signed and unsigned" "COMPOUND_EXPR" }*/    return x;  if (u < (bar(), 10))    return x;  if ((bar(), 10) < u)    return x;  if (u < (x ? (bar(),bar(),bar(),bar(),x==y) : 10))    return x;  if ((x ? 10 : (bar(),bar(),bar(),bar(),x==y)) < u)    return x;  /* Test an ABS_EXPR, which is by definition non-negative.  */  if (u < __builtin_abs(x))    return x;  if (__builtin_abs(x) < u)    return x;  if (u < (x ? __builtin_abs(x) : 10))    return x;  if ((x ? 10: __builtin_abs(x)) < u)    return x;  /* A MODIFY_EXPR is non-negative if the new value is known to be     non-negative.  */  if (u < (x = -1)) /* { dg-warning "signed and unsigned" "MODIFY_EXPR" } */    return x;  if (u < (x = 10))    return x;  if ((x = 10) < u)    return x;  if (u < (x = (y ? (x==y) : 10)))    return x;  if ((x = (y ? 10 : (x==y))) < u)    return x;  return 0;}

⌨️ 快捷键说明

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