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.
10 lines
222 B
C++
10 lines
222 B
C++
using INTPTR = const int *;
|
|
int foo(INTPTR ParamPtr, unsigned ParamUnsigned, bool ParamBool) {
|
|
if (ParamBool) {
|
|
typedef int INTEGER;
|
|
const INTEGER CONSTANT = 7;
|
|
return CONSTANT;
|
|
}
|
|
return ParamUnsigned;
|
|
}
|