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: - asm_func_debug.test - basic_instrumentation.test - bolt_icf.test - ctc_and_unreachable.test - double_jump.test - exceptions_args.test - exceptions_instrumentation.test - fptr.test (cherry picked from FBD32032684)
28 lines
213 B
C++
28 lines
213 B
C++
int fiz() {
|
|
return fiz();
|
|
}
|
|
|
|
int faz() {
|
|
return faz();
|
|
}
|
|
|
|
int zip () {
|
|
return 0;
|
|
}
|
|
|
|
int zap () {
|
|
return 0;
|
|
}
|
|
|
|
int foo () {
|
|
return zip();
|
|
}
|
|
|
|
int bar () {
|
|
return zap();
|
|
}
|
|
|
|
int main() {
|
|
return foo();
|
|
}
|