2012-02-03 05:49:51 +04:00
|
|
|
// RUN: %clang %s -fsyntax-only -Wignored-qualifiers -Wno-error=return-type -Xclang -verify -fblocks -Wno-unreachable-code -Wno-unused-value
|
2009-04-30 20:01:26 +04:00
|
|
|
|
|
|
|
// clang emits the following warning by default.
|
|
|
|
// With GCC, -pedantic, -Wreturn-type or -Wall are required to produce the
|
|
|
|
// following warning.
|
|
|
|
int t14() {
|
|
|
|
return; // expected-warning {{non-void function 't14' should return a value}}
|
|
|
|
}
|
|
|
|
|
2009-04-30 21:53:16 +04:00
|
|
|
void t15() {
|
|
|
|
return 1; // expected-warning {{void function 't15' should not return a value}}
|
|
|
|
}
|
2009-07-23 03:56:57 +04:00
|
|
|
|
|
|
|
int unknown();
|
|
|
|
|
|
|
|
void test0() {
|
|
|
|
}
|
|
|
|
|
|
|
|
int test1() {
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
|
|
|
int test2() {
|
|
|
|
a: goto a;
|
|
|
|
}
|
|
|
|
|
|
|
|
int test3() {
|
|
|
|
goto a;
|
|
|
|
a: ;
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
|
|
|
|
|
|
|
void halt() {
|
|
|
|
a: goto a;
|
|
|
|
}
|
|
|
|
|
|
|
|
void halt2() __attribute__((noreturn));
|
|
|
|
|
|
|
|
int test4() {
|
|
|
|
halt2();
|
|
|
|
}
|
|
|
|
|
|
|
|
int test5() {
|
|
|
|
halt2(), (void)1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int test6() {
|
|
|
|
1, halt2();
|
|
|
|
}
|
|
|
|
|
|
|
|
int j;
|
|
|
|
int unknown_nohalt() {
|
|
|
|
return j;
|
|
|
|
}
|
|
|
|
|
|
|
|
int test7() {
|
|
|
|
unknown();
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
|
|
|
int test8() {
|
|
|
|
(void)(1 + unknown());
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
2010-09-03 04:25:02 +04:00
|
|
|
int halt3() __attribute__((noreturn));
|
2009-07-23 03:56:57 +04:00
|
|
|
|
|
|
|
int test9() {
|
|
|
|
(void)(halt3() + unknown());
|
|
|
|
}
|
|
|
|
|
|
|
|
int test10() {
|
|
|
|
(void)(unknown() || halt3());
|
|
|
|
} // expected-warning {{control may reach end of non-void function}}
|
|
|
|
|
|
|
|
int test11() {
|
|
|
|
(void)(unknown() && halt3());
|
|
|
|
} // expected-warning {{control may reach end of non-void function}}
|
|
|
|
|
|
|
|
int test12() {
|
|
|
|
(void)(halt3() || unknown());
|
|
|
|
}
|
|
|
|
|
|
|
|
int test13() {
|
|
|
|
(void)(halt3() && unknown());
|
|
|
|
}
|
|
|
|
|
|
|
|
int test14() {
|
|
|
|
(void)(1 || unknown());
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
|
|
|
int test15() {
|
|
|
|
(void)(0 || unknown());
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
|
|
|
int test16() {
|
|
|
|
(void)(0 && unknown());
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
|
|
|
int test17() {
|
|
|
|
(void)(1 && unknown());
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
|
|
|
int test18() {
|
|
|
|
(void)(unknown_nohalt() && halt3());
|
|
|
|
} // expected-warning {{control may reach end of non-void function}}
|
|
|
|
|
|
|
|
int test19() {
|
|
|
|
(void)(unknown_nohalt() && unknown());
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
|
|
|
int test20() {
|
|
|
|
int i;
|
|
|
|
if (i)
|
|
|
|
return 0;
|
|
|
|
else if (0)
|
|
|
|
return 2;
|
|
|
|
} // expected-warning {{control may reach end of non-void function}}
|
|
|
|
|
|
|
|
int test21() {
|
|
|
|
int i;
|
|
|
|
if (i)
|
|
|
|
return 0;
|
|
|
|
else if (1)
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
int test22() {
|
|
|
|
int i;
|
|
|
|
switch (i) default: ;
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
|
|
|
int test23() {
|
|
|
|
int i;
|
|
|
|
switch (i) {
|
|
|
|
case 0:
|
|
|
|
return 0;
|
|
|
|
case 2:
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
} // expected-warning {{control may reach end of non-void function}}
|
|
|
|
|
|
|
|
int test24() {
|
|
|
|
int i;
|
|
|
|
switch (i) {
|
|
|
|
case 0:
|
|
|
|
return 0;
|
|
|
|
case 2:
|
|
|
|
return 2;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int test25() {
|
|
|
|
1 ? halt3() : unknown();
|
|
|
|
}
|
|
|
|
|
|
|
|
int test26() {
|
|
|
|
0 ? halt3() : unknown();
|
|
|
|
} // expected-warning {{control reaches end of non-void function}}
|
|
|
|
|
|
|
|
int j;
|
2009-07-26 01:26:53 +04:00
|
|
|
void (*fptr)() __attribute__((noreturn));
|
2009-07-23 03:56:57 +04:00
|
|
|
int test27() {
|
|
|
|
switch (j) {
|
|
|
|
case 1:
|
|
|
|
do { } while (1);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
for (;;) ;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
for (;1;) ;
|
|
|
|
for (;0;) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
case 4:
|
|
|
|
while (0) { goto done; }
|
|
|
|
return 1;
|
|
|
|
case 5:
|
|
|
|
while (1) { return 1; }
|
|
|
|
break;
|
2009-07-26 01:26:53 +04:00
|
|
|
case 6:
|
|
|
|
fptr();
|
|
|
|
break;
|
2009-07-23 03:56:57 +04:00
|
|
|
default:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
done: ;
|
|
|
|
}
|
2009-07-27 04:44:23 +04:00
|
|
|
|
2009-07-27 08:49:58 +04:00
|
|
|
// PR4624
|
2009-07-27 04:44:23 +04:00
|
|
|
void test28() __attribute__((noreturn));
|
|
|
|
void test28(x) { while (1) { } }
|
2009-07-27 23:14:18 +04:00
|
|
|
|
|
|
|
void exit(int);
|
|
|
|
int test29() {
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-07-28 01:33:40 +04:00
|
|
|
|
|
|
|
#include <setjmp.h>
|
|
|
|
jmp_buf test30_j;
|
|
|
|
int test30() {
|
2009-07-28 01:45:16 +04:00
|
|
|
if (j)
|
|
|
|
longjmp(test30_j, 1);
|
|
|
|
else
|
2010-10-19 05:17:08 +04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64) || defined(__CYGWIN__)
|
2009-10-29 03:10:42 +03:00
|
|
|
longjmp(test30_j, 2);
|
|
|
|
#else
|
2009-07-28 01:45:16 +04:00
|
|
|
_longjmp(test30_j, 1);
|
2009-10-29 03:10:42 +03:00
|
|
|
#endif
|
2009-07-28 01:33:40 +04:00
|
|
|
}
|
2009-07-28 02:25:19 +04:00
|
|
|
|
|
|
|
typedef void test31_t(int status);
|
|
|
|
void test31(test31_t *callback __attribute__((noreturn)));
|
2009-07-29 03:11:12 +04:00
|
|
|
|
|
|
|
void test32() {
|
|
|
|
^ (void) { while (1) { } }();
|
|
|
|
^ (void) { if (j) while (1) { } }();
|
|
|
|
while (1) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
void test33() {
|
|
|
|
if (j) while (1) { }
|
|
|
|
}
|
2010-03-23 03:13:23 +03:00
|
|
|
|
|
|
|
// Test that 'static inline' functions are only analyzed for CFG-based warnings
|
|
|
|
// when they are used.
|
2010-04-08 22:51:47 +04:00
|
|
|
static inline int si_has_missing_return() {} // expected-warning{{control reaches end of non-void function}}
|
2010-03-23 03:13:23 +03:00
|
|
|
static inline int si_has_missing_return_2() {}; // expected-warning{{control reaches end of non-void function}}
|
2010-03-23 04:37:12 +03:00
|
|
|
static inline int si_forward();
|
2010-03-23 03:13:23 +03:00
|
|
|
static inline int si_has_missing_return_3(int x) {
|
|
|
|
if (x)
|
|
|
|
return si_has_missing_return_3(x+1);
|
|
|
|
} // expected-warning{{control may reach end of non-void function}}
|
|
|
|
|
|
|
|
int test_static_inline(int x) {
|
2010-03-23 04:37:12 +03:00
|
|
|
si_forward();
|
2010-03-23 03:13:23 +03:00
|
|
|
return x ? si_has_missing_return_2() : si_has_missing_return_3(x);
|
|
|
|
}
|
2010-03-23 04:37:12 +03:00
|
|
|
static inline int si_forward() {} // expected-warning{{control reaches end of non-void function}}
|
2010-03-23 03:13:23 +03:00
|
|
|
|
2010-07-14 10:36:18 +04:00
|
|
|
// Test warnings on ignored qualifiers on return types.
|
|
|
|
const int ignored_c_quals(); // expected-warning{{'const' type qualifier on return type has no effect}}
|
|
|
|
const volatile int ignored_cv_quals(); // expected-warning{{'const volatile' type qualifiers on return type have no effect}}
|
2011-02-23 21:51:59 +03:00
|
|
|
char* const volatile restrict ignored_cvr_quals(); // expected-warning{{'const volatile restrict' type qualifiers on return type have no effect}}
|
2010-09-09 04:06:07 +04:00
|
|
|
|
|
|
|
// Test that for switch(enum) that if the switch statement covers all the cases
|
|
|
|
// that we don't consider that for -Wreturn-type.
|
|
|
|
enum Cases { C1, C2, C3, C4 };
|
|
|
|
int test_enum_cases(enum Cases C) {
|
|
|
|
switch (C) {
|
|
|
|
case C1: return 1;
|
|
|
|
case C2: return 2;
|
|
|
|
case C4: return 3;
|
|
|
|
case C3: return 4;
|
|
|
|
}
|
|
|
|
} // no-warning
|
2012-03-22 03:30:30 +04:00
|
|
|
|
|
|
|
// PR12318 - Don't give a may reach end of non-void function warning.
|
|
|
|
int test34(int x) {
|
|
|
|
if (x == 1) {
|
|
|
|
return 3;
|
|
|
|
} else if ( x == 2 || 1) {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
}
|