mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-13 05:40:59 +00:00
![Amir Ayupov](/assets/img/avatar_default.png)
Summary: Imported small internal tests: - fallthrough-to-noop.test (cherry picked from FBD32158100)
15 lines
146 B
C
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();
|
|
}
|