Summary: Imported small internal tests: - jmp_optimization.test - jmpjmp.test - jump_table_footprint_reduction.test - jump_table_reference.test (cherry picked from FBD31483122)
8 lines
67 B
C++
8 lines
67 B
C++
int g();
|
|
|
|
int main() {
|
|
int x = g();
|
|
int y = x*x;
|
|
return y;
|
|
}
|