cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

test-libbfd.c (269B)


      1// SPDX-License-Identifier: GPL-2.0
      2#include <bfd.h>
      3
      4extern int printf(const char *format, ...);
      5
      6int main(void)
      7{
      8	char symbol[4096] = "FieldName__9ClassNameFd";
      9	char *tmp;
     10
     11	tmp = bfd_demangle(0, symbol, 0);
     12
     13	printf("demangled symbol: {%s}\n", tmp);
     14
     15	return 0;
     16}