aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/build/feature/test-libbfd.c
blob: 24059907e990da208af957549b662e29f13695b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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;
}