wbad-function-cast-1.c

来自「用于进行gcc测试」· C语言 代码 · 共 45 行

C
45
字号
/* Test operation of -Wbad-function-cast.  *//* Based on gcc.dg/Wbad-function-cast-1.c.  *//* { dg-do compile } *//* { dg-options "-std=gnu99 -Wbad-function-cast" } */int if1(void);char if2(void);long if3(void);float rf1(void);double rf2(void);_Decimal32 rf3(void);_Decimal64 rf4(void);_Decimal128 rf5(void);_Complex double cf(void);voidfoo(void){  /* Casts to void types are always OK.  */  (void)rf3();  (void)rf4();  (void)rf5();  (const void)rf3();  /* Casts to the same type or similar types are OK.  */  (_Decimal32)rf1();  (_Decimal64)rf2();  (_Decimal128)rf3();  (_Decimal128)rf4();  (_Decimal128)rf5();  (float)rf3();  (double)rf4();  (long double)rf5();   /* Casts to types with different TREE_CODE (which is how this     warning has been defined) are not OK, except for casts to void     types.  */  (_Decimal32)if1(); /* { dg-warning "cast from function call of type 'int' to non-matching type '_Decimal32'" } */  (_Decimal64)if2(); /* { dg-warning "cast from function call of type 'char' to non-matching type '_Decimal64'" } */  (_Decimal128)if3(); /* { dg-warning "cast from function call of type 'long int' to non-matching type '_Decimal128'" } */  (int)rf3(); /* { dg-warning "cast from function call of type '_Decimal32' to non-matching type 'int'" } */  (long)rf4(); /* { dg-warning "cast from function call of type '_Decimal64' to non-matching type 'long int'" } */  (long int)rf5(); /* { dg-warning "cast from function call of type '_Decimal128' to non-matching type 'long int'" } */  (_Decimal32)cf(); /* { dg-warning "cast from function call of type 'complex double' to non-matching type '_Decimal32'" } */}

⌨️ 快捷键说明

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