2012-01-24 13:34:08 +08:00
|
|
|
// RUN: %clang %s -fsyntax-only -Xclang -verify -fblocks -Wunreachable-code -Wno-unused-value -Wno-covered-switch-default
|
2010-01-15 11:15:36 +08:00
|
|
|
|
2010-09-03 08:25:02 +08:00
|
|
|
int halt() __attribute__((noreturn));
|
2010-01-16 07:17:13 +08:00
|
|
|
int live();
|
|
|
|
int dead();
|
|
|
|
|
2010-01-15 11:15:36 +08:00
|
|
|
void test1() {
|
|
|
|
goto c;
|
|
|
|
d:
|
|
|
|
goto e; // expected-warning {{will never be executed}}
|
|
|
|
c: ;
|
|
|
|
int i;
|
|
|
|
return;
|
|
|
|
goto b; // expected-warning {{will never be executed}}
|
|
|
|
goto a; // expected-warning {{will never be executed}}
|
|
|
|
b:
|
|
|
|
i = 1;
|
|
|
|
a:
|
|
|
|
i = 2;
|
|
|
|
goto f;
|
|
|
|
e:
|
|
|
|
goto d;
|
|
|
|
f: ;
|
|
|
|
}
|
2010-01-16 07:17:13 +08:00
|
|
|
|
|
|
|
void test2() {
|
2010-01-22 01:31:41 +08:00
|
|
|
int i;
|
2010-01-16 07:17:13 +08:00
|
|
|
switch (live()) {
|
|
|
|
case 1:
|
|
|
|
halt(),
|
|
|
|
dead(); // expected-warning {{will never be executed}}
|
|
|
|
|
|
|
|
case 2:
|
2010-01-22 01:21:23 +08:00
|
|
|
live(), halt(),
|
2010-01-16 07:17:13 +08:00
|
|
|
dead(); // expected-warning {{will never be executed}}
|
|
|
|
|
|
|
|
case 3:
|
2010-10-24 16:21:40 +08:00
|
|
|
live()
|
|
|
|
+ // expected-warning {{will never be executed}}
|
2010-01-22 01:21:23 +08:00
|
|
|
halt();
|
|
|
|
dead();
|
2010-01-16 07:17:13 +08:00
|
|
|
|
|
|
|
case 4:
|
|
|
|
a4:
|
|
|
|
live(),
|
|
|
|
halt();
|
|
|
|
goto a4; // expected-warning {{will never be executed}}
|
|
|
|
|
|
|
|
case 5:
|
|
|
|
goto a5;
|
|
|
|
c5:
|
|
|
|
dead(); // expected-warning {{will never be executed}}
|
|
|
|
goto b5;
|
|
|
|
a5:
|
|
|
|
live(),
|
|
|
|
halt();
|
|
|
|
b5:
|
|
|
|
goto c5;
|
|
|
|
|
|
|
|
case 6:
|
|
|
|
if (live())
|
|
|
|
goto e6;
|
|
|
|
live(),
|
|
|
|
halt();
|
|
|
|
d6:
|
|
|
|
dead(); // expected-warning {{will never be executed}}
|
|
|
|
goto b6;
|
|
|
|
c6:
|
|
|
|
dead();
|
|
|
|
goto b6;
|
|
|
|
e6:
|
|
|
|
live(),
|
|
|
|
halt();
|
|
|
|
b6:
|
|
|
|
goto c6;
|
2010-01-22 01:21:23 +08:00
|
|
|
case 7:
|
|
|
|
halt()
|
2010-10-24 16:21:40 +08:00
|
|
|
+
|
|
|
|
dead(); // expected-warning {{will never be executed}}
|
2010-01-22 01:21:23 +08:00
|
|
|
- // expected-warning {{will never be executed}}
|
|
|
|
halt();
|
2010-01-22 01:31:41 +08:00
|
|
|
case 8:
|
2013-02-06 06:00:19 +08:00
|
|
|
i
|
|
|
|
+= // expected-warning {{will never be executed}}
|
2010-01-22 01:31:41 +08:00
|
|
|
halt();
|
2010-01-22 03:44:04 +08:00
|
|
|
case 9:
|
|
|
|
halt()
|
|
|
|
? // expected-warning {{will never be executed}}
|
|
|
|
dead() : dead();
|
2010-01-22 03:51:34 +08:00
|
|
|
case 10:
|
|
|
|
( // expected-warning {{will never be executed}}
|
|
|
|
float)halt();
|
2010-01-22 07:15:53 +08:00
|
|
|
case 11: {
|
|
|
|
int a[5];
|
|
|
|
live(),
|
2013-02-06 06:00:19 +08:00
|
|
|
a[halt()
|
|
|
|
]; // expected-warning {{will never be executed}}
|
2010-01-22 07:15:53 +08:00
|
|
|
}
|
2010-01-16 07:17:13 +08:00
|
|
|
}
|
|
|
|
}
|
2010-09-09 08:06:10 +08:00
|
|
|
|
|
|
|
enum Cases { C1, C2, C3 };
|
|
|
|
int test_enum_cases(enum Cases C) {
|
|
|
|
switch (C) {
|
|
|
|
case C1:
|
|
|
|
case C2:
|
|
|
|
case C3:
|
|
|
|
return 1;
|
|
|
|
default: {
|
|
|
|
int i = 0; // expected-warning{{will never be executed}}
|
|
|
|
++i;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-26 03:28:55 +08:00
|
|
|
// Handle unreachable code triggered by macro expansions.
|
|
|
|
void __myassert_rtn(const char *, const char *, int, const char *) __attribute__((__noreturn__));
|
|
|
|
|
|
|
|
#define myassert(e) \
|
|
|
|
(__builtin_expect(!(e), 0) ? __myassert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
|
|
|
|
|
|
|
|
void test_assert() {
|
|
|
|
myassert(0 && "unreachable");
|
|
|
|
return; // no-warning
|
|
|
|
}
|
|
|
|
|
2012-01-04 05:02:04 +08:00
|
|
|
// Test case for PR 9774. Tests that dead code in macros aren't warned about.
|
|
|
|
#define MY_MAX(a,b) ((a) >= (b) ? (a) : (b))
|
|
|
|
void PR9774(int *s) {
|
|
|
|
for (int i = 0; i < MY_MAX(2, 3); i++) // no-warning
|
|
|
|
s[i] = 0;
|
|
|
|
}
|
2011-08-26 03:28:55 +08:00
|
|
|
|
2012-08-24 15:42:09 +08:00
|
|
|
// Test case for <rdar://problem/11005770>. We should treat code guarded
|
|
|
|
// by 'x & 0' and 'x * 0' as unreachable.
|
|
|
|
void calledFun();
|
|
|
|
void test_mul_and_zero(int x) {
|
|
|
|
if (x & 0) calledFun(); // expected-warning {{will never be executed}}
|
|
|
|
if (0 & x) calledFun(); // expected-warning {{will never be executed}}
|
|
|
|
if (x * 0) calledFun(); // expected-warning {{will never be executed}}
|
|
|
|
if (0 * x) calledFun(); // expected-warning {{will never be executed}}
|
|
|
|
}
|