mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
98eef62d28
Function pointers were not correctly handled by the dumper, and they would print as "* name". They now print as "int (__cdecl *name)(int arg1, int arg2)" as they should. Also, doubles were being printed as floats. This fixes that bug as well, and adds tests for all builtin types. as well as a test for function pointers. llvm-svn: 230703
16 lines
254 B
CMake
16 lines
254 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
DebugInfoPDB
|
|
)
|
|
|
|
add_llvm_tool(llvm-pdbdump
|
|
llvm-pdbdump.cpp
|
|
BuiltinDumper.cpp
|
|
ClassDefinitionDumper.cpp
|
|
CompilandDumper.cpp
|
|
FunctionDumper.cpp
|
|
TypeDumper.cpp
|
|
TypedefDumper.cpp
|
|
VariableDumper.cpp
|
|
)
|