Amir Ayupov 2e0ad6ffe4 [BOLT][TEST] Import small tests
Summary:
Imported small internal tests:
- fallthrough-to-noop.test

(cherry picked from FBD32158100)
2021-11-03 17:09:49 -07:00

15 lines
146 B
C

// Test identical code folding handling.
#include <stdio.h>
int foo() {
return 0;
}
int bar() {
return 0;
}
int main() {
return foo();
}