synthetic tests: renamed functions
This commit is contained in:
parent
5b1f112195
commit
aff84daff3
|
@ -10,8 +10,8 @@ void par_dependant(int x, int y) {
|
||||||
TestData[y] = 0; // BUG
|
TestData[y] = 0; // BUG
|
||||||
}
|
}
|
||||||
void call(int x) {
|
void call(int x) {
|
||||||
function_par_not_dependant(1000);
|
par_not_dependant(1000);
|
||||||
function_par_dependant(0, 1000);
|
par_dependant(0, 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
int getLargeIndex() { return 1000; }
|
int getLargeIndex() { return 1000; }
|
||||||
|
|
Loading…
Reference in New Issue