mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 19:46:06 +00:00

Add support for the WebAssembly binary format and be able to generate logical views. https://github.com/llvm/llvm-project/issues/69181 The README.txt includes information about how to build the test cases.
16 lines
269 B
C++
16 lines
269 B
C++
#include "definitions.h"
|
|
forceinline int InlineFunction(int Param) {
|
|
int Var_1 = Param;
|
|
{
|
|
int Var_2 = Param + Var_1;
|
|
Var_1 = Var_2;
|
|
}
|
|
return Var_1;
|
|
}
|
|
|
|
int test(int Param_1, int Param_2) {
|
|
int A = Param_1;
|
|
A += InlineFunction(Param_2);
|
|
return A;
|
|
}
|