You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
369 B
23 lines
369 B
// Ensure that --redundant is indeed implied by --leaf-changes-only mode and
|
|
// that all the changed functions get complete reports.
|
|
struct stn1 {
|
|
int x;
|
|
};
|
|
|
|
struct stn2 {
|
|
long x;
|
|
double y;
|
|
};
|
|
|
|
void fn1(struct stn1 s) { // was sto1
|
|
}
|
|
|
|
void fn2(struct stn2 s) { // was sto2
|
|
}
|
|
|
|
void fn3(struct stn1* s) { // was sto1
|
|
}
|
|
|
|
void fn4(struct stn2* s) { // was sto2
|
|
}
|