synthetic tests: renamed functions

This commit is contained in:
Daniel Marjamäki 2016-11-22 11:37:15 +01:00
parent 5b1f112195
commit aff84daff3
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ void par_dependant(int x, int y) {
TestData[y] = 0; // BUG
}
void call(int x) {
function_par_not_dependant(1000);
function_par_dependant(0, 1000);
par_not_dependant(1000);
par_dependant(0, 1000);
}
int getLargeIndex() { return 1000; }