[WARNING]
If the option -Oi is enabled, calls of empty functions are removed.
void f() {
}
void main() {
f(); // this call is removed !
}
If for any reason you need a call of an empty function, disable the option -Oi.