<html>
    <head>
      <base href="https://bugs.llvm.org/">
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Demangle symbol names in substrings"
   href="https://bugs.llvm.org/show_bug.cgi?id=39990">39990</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Demangle symbol names in substrings
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>tools
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Windows NT
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>enhancement
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>llvm-c++filt
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>jh7370.2008@my.bristol.ac.uk
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>GNU's c++filt can demangle symbol names that form parts of another string. It
would be nice if llvm-cxxfilt could as well, as it allows piping e.g. a symbol
table dump from llvm-readelf through llvm-cxxfilt to get the demangled names:

Example:

C:\Work> echo "this string contains a _Z7mangledv name" | c++filt
this string contains a mangled() name
C:\Work> echo "this string contains a _Z7mangledv name" | llvm-cxxfilt
this string contains a _Z7mangledv name

It doesn't work currently because llvm-cxxfilt works on whole lines. We should
consider splitting the input string on spaces before running llvm-cxxfilt on
it.</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>