ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since 1958fec was 90cac45, checked in by Rob Schluntz <rschlunt@…>, 7 years ago |
Add options parameter to cforall_demangle
|
-
Property mode
set to
100644
|
File size:
514 bytes
|
Rev | Line | |
---|
[d1e0979] | 1 | #include "Mangler.h"
|
---|
| 2 | #include <iostream>
|
---|
| 3 | #include <fstream>
|
---|
| 4 | using namespace std;
|
---|
| 5 |
|
---|
| 6 | void f(const std::string & mangleName) {
|
---|
[90cac45] | 7 | char * demangleName = cforall_demangle(mangleName.c_str(), 0);
|
---|
[f47d0ad] | 8 | cout << mangleName << " => " << std::flush << demangleName << endl;
|
---|
| 9 | free(demangleName);
|
---|
[d1e0979] | 10 | }
|
---|
| 11 |
|
---|
| 12 | int main() {
|
---|
[f47d0ad] | 13 | ifstream in("in-demangle.txt");
|
---|
| 14 | std::string line;
|
---|
| 15 | while (getline(in, line)) {
|
---|
| 16 | if (line.empty()) { cout << "=================================" << endl; continue; }
|
---|
| 17 | else if (line[0] == '#') continue;
|
---|
| 18 | f(line);
|
---|
| 19 | }
|
---|
[d1e0979] | 20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.