diff options
Diffstat (limited to 'tools/perf/config/feature-checks/test-libbfd.c')
-rw-r--r-- | tools/perf/config/feature-checks/test-libbfd.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/perf/config/feature-checks/test-libbfd.c b/tools/perf/config/feature-checks/test-libbfd.c new file mode 100644 index 000000000000..24059907e990 --- /dev/null +++ b/tools/perf/config/feature-checks/test-libbfd.c | |||
@@ -0,0 +1,15 @@ | |||
1 | #include <bfd.h> | ||
2 | |||
3 | extern int printf(const char *format, ...); | ||
4 | |||
5 | int main(void) | ||
6 | { | ||
7 | char symbol[4096] = "FieldName__9ClassNameFd"; | ||
8 | char *tmp; | ||
9 | |||
10 | tmp = bfd_demangle(0, symbol, 0); | ||
11 | |||
12 | printf("demangled symbol: {%s}\n", tmp); | ||
13 | |||
14 | return 0; | ||
15 | } | ||