diff --git a/test/synthetic/functions.c b/test/synthetic/functions.c index 1d58e40ff..e94082a46 100644 --- a/test/synthetic/functions.c +++ b/test/synthetic/functions.c @@ -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; }