mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 22:26:05 +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.
15 lines
244 B
C++
15 lines
244 B
C++
int bar(float Input) { return (int)Input; }
|
|
|
|
unsigned foo(char Param) {
|
|
typedef int INT;
|
|
INT Value = Param;
|
|
{
|
|
typedef float FLOAT;
|
|
{
|
|
FLOAT Added = Value + Param;
|
|
Value = bar(Added);
|
|
}
|
|
}
|
|
return Value + Param;
|
|
}
|