summaryrefslogblamecommitdiffstats
path: root/tools/build/feature/test-libbfd.c
blob: 24059907e990da208af957549b662e29f13695b9 (plain) (tree)
1
2
3
4
5
6

                

                                           

              






                                                      

                 
#include <bfd.h>

extern int printf(const char *format, ...);

int main(void)
{
	char symbol[4096] = "FieldName__9ClassNameFd";
	char *tmp;

	tmp = bfd_demangle(0, symbol, 0);

	printf("demangled symbol: {%s}\n", tmp);

	return 0;
}