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

                

                                           

              






                                                      

                 
// SPDX-License-Identifier: GPL-2.0
#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;
}