<div dir="ltr">This is more of a general C and C++ question than one suitable to the LLVM discussion list, I think?<br><br>You can modify the source itself - <a href="https://en.cppreference.com/w/cpp/language/language_linkage">https://en.cppreference.com/w/cpp/language/language_linkage</a> - discusses the extern "C" directive and how it can be used to expose C-linkage functions from C++ translation units (so, if you have a function with C API, but an implementation written in C++, this is how to do that)</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Oct 28, 2019 at 3:37 PM Syed Ahmed via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi all,<div><br></div><div>I'm a LLVM newbie and am working on a LLVM 3.5 code base. The project (<a href="https://github.com/zhguanw/lin-analyzer" target="_blank">https://github.com/zhguanw/lin-analyzer</a>) makes use of clang and reads C code. I'm trying to make it read C++ code. When I compile a kernel written in C with clang++, I get the following difference in the IR for a function declaration:</div><div><br></div><div>When compiled with clang:</div><div><font face="monospace">declare void @convolution3d(float*, float*) #1</font><br></div><div><br></div><div>When compiled with clang++:</div><div><font face="monospace">declare void @_Z13convolution3dPfS_(float*, float*) #2<br></font></div><div><br></div><div>The project breaks if I compile with clang++ because it expects the function name to not have the <font face="monospace">@_Z13*PfS</font>. Does anyone know how I can get the function name in the IR generated by clang++ to not have the mangled characters? Once again, this is in LLVM 3.5.</div><div><br></div><div>Best,</div><div><br></div><div>Syed Ahmed</div><div>PhD Student</div><div>Implementation of Computation Group</div><div>UPenn</div></div>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>