// after
void process()
{
    do_something();

    int32_t value = compute_value();
    log_value(value);

    int32_t temp = value + 100;
}
