search for: _znst4listiisaiieeaserks1_

Displaying 5 results from an estimated 5 matches for "_znst4listiisaiieeaserks1_".

2010 Aug 27
5
[LLVMdev] How to demange C++ names
...ato, > > Just wondering if LLVM has any command options or tool to allow for > > demangling C++ names from the LLVM bitcode? > > c++filt? Do you refer to any particular version of c++filt? I tried, but seemed not to work. For example, when I run a command as below: c++filt _ZNSt4listIiSaIiEEaSERKS1_ The output remains the same as the input symbol. By the way, when I run c++filt -v It outputs: GNU c++filt 070207 20070207 Copyright 2005 Free Software Foundation, Inc. This program is free software; you may redistribute it under the terms of the GNU General Public License. Th...
2010 Aug 27
0
[LLVMdev] How to demange C++ names
On 08/27/2010 01:43 PM, Xiaolong Tang wrote: [snip] > c++filt _ZNSt4listIiSaIiEEaSERKS1_ > > The output remains the same as the input symbol. > > By the way, when I run > > c++filt -v > > It outputs: > > GNU c++filt 070207 20070207 > Copyright 2005 Free Software Foundation, Inc. > This program is free software; you may redistribute it und...
2010 Aug 27
0
[LLVMdev] How to demange C++ names
...LLVM has any command options or tool to allow for >>> demangling C++ names from the LLVM bitcode? >> >> c++filt? > > Do you refer to any particular version of c++filt? I tried, but seemed > not to work. For example, when I run a command as below: > > c++filt _ZNSt4listIiSaIiEEaSERKS1_ Try: c++filt __ZNSt4listIiSaIiEEaSERKS1_ -Chris > > The output remains the same as the input symbol. > > By the way, when I run > > c++filt -v > > It outputs: > > GNU c++filt 070207 20070207 > Copyright 2005 Free Software Foundation, Inc. > This p...
2010 Aug 27
3
[LLVMdev] How to demange C++ names
Hey all, Just wondering if LLVM has any command options or tool to allow for demangling C++ names from the LLVM bitcode? Thanks! Best, Xiaolong
2010 Aug 27
0
[LLVMdev] How to demange C++ names
On 27 August 2010 18:56, Xiaolong Tang <xiaolong.snake at gmail.com> wrote: > Just wondering if LLVM has any command options or tool to allow for > demangling C++ names from the LLVM bitcode? c++filt? --renato