
A significant number of our tests in C accidentally use functions without prototypes. This patch converts the function signatures to have a prototype for the situations where the test is not specific to K&R C declarations. e.g., void func(); becomes void func(void); This is the third batch of tests being updated (there are a significant number of other tests left to be updated).
56 lines
935 B
C
56 lines
935 B
C
// RUN: %clang_cc1 %s -triple=i686-pc-win32 -fsyntax-only -verify -fms-extensions -Wunreachable-code
|
|
|
|
void f(void);
|
|
|
|
void g1(void) {
|
|
__try {
|
|
f();
|
|
__leave;
|
|
f(); // expected-warning{{will never be executed}}
|
|
} __except(1) {
|
|
f();
|
|
}
|
|
|
|
// Completely empty.
|
|
__try {
|
|
} __except(1) {
|
|
}
|
|
|
|
__try {
|
|
f();
|
|
return;
|
|
} __except(1) { // Filter expression should not be marked as unreachable.
|
|
// Empty __except body.
|
|
}
|
|
}
|
|
|
|
void g2(void) {
|
|
__try {
|
|
// Nested __try.
|
|
__try {
|
|
f();
|
|
__leave;
|
|
f(); // expected-warning{{will never be executed}}
|
|
} __except(2) {
|
|
}
|
|
f();
|
|
__leave;
|
|
f(); // expected-warning{{will never be executed}}
|
|
} __except(1) {
|
|
f();
|
|
}
|
|
}
|
|
|
|
void g3(void) {
|
|
__try {
|
|
__try {
|
|
f();
|
|
} __except (1) {
|
|
__leave; // should exit outer try
|
|
}
|
|
__leave;
|
|
f(); // expected-warning{{never be executed}}
|
|
} __except (1) {
|
|
}
|
|
}
|