Files
clang-p2996/bolt/test/X86/Inputs/jmp_opt.cpp
Amir Ayupov c74e5bfee3 [BOLT][TEST] Imported small tests
Summary:
Imported small internal tests:
- jmp_optimization.test
- jmpjmp.test
- jump_table_footprint_reduction.test
- jump_table_reference.test

(cherry picked from FBD31483122)
2021-10-06 16:20:00 -07:00

8 lines
67 B
C++

int g();
int main() {
int x = g();
int y = x*x;
return y;
}