Stack size before push: 1
Stack size after push: 2
Temporary code:
/**** File 'cxx_weaver_output/rebuild.cpp' ****/


void b() {
   int i;
}


void a() {
   int j;
   b();
}

// Hello

int main() {
   int k;
   a();
   
   return 0;
}

/**** End File ****/

/**** File 'rebuild.h' ****/
#ifndef _REBUILD_H_
#define _REBUILD_H_
#endif
/**** End File ****/

Stack size after pop: 1
Original code:
/**** File 'cxx_weaver_output/rebuild.cpp' ****/


void b() {
   int i;
}


void a() {
   int j;
   b();
}


int main() {
   int k;
   a();
   
   return 0;
}

/**** End File ****/

/**** File 'rebuild.h' ****/
#ifndef _REBUILD_H_
#define _REBUILD_H_
#endif
/**** End File ****/
