xref: /llvm-project/llvm/test/tools/llvm-debuginfo-analyzer/WebAssembly/Inputs/test.cpp (revision b19cfb9175223d3e1bb3ef6d49ccd26d0104906c)
1 using INTPTR = const int *;
foo(INTPTR ParamPtr,unsigned ParamUnsigned,bool ParamBool)2 int foo(INTPTR ParamPtr, unsigned ParamUnsigned, bool ParamBool) {
3   if (ParamBool) {
4     typedef int INTEGER;
5     const INTEGER CONSTANT = 7;
6     return CONSTANT;
7   }
8   return ParamUnsigned;
9 }
10