[LLVMbugs] [Bug 12396] -ffreestanding affects name mangling in C++
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Thu Oct 24 08:55:57 PDT 2013
http://llvm.org/bugs/show_bug.cgi?id=12396
Alexander Potapenko <glider at google.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|WORKSFORME |---
--- Comment #4 from Alexander Potapenko <glider at google.com> ---
I see the same output for __INTPTR_TYPE__ on my machine, yet the original
problem is still reproducible for me:
$ bin/clang++ --version
clang version 3.4 (193352)
Target: x86_64-apple-darwin12.5.0
Thread model: posix
$ bin/clang++ -c t.cc -ffreestanding && nm t.o
0000000000000040 s EH_frame0
0000000000000000 T __Z3Bary
0000000000000058 S __Z3Bary.eh
U __Z3Fooy
$ bin/clang++ -c t.cc && nm t.o
0000000000000040 s EH_frame0
0000000000000000 T __Z3Barm
0000000000000058 S __Z3Barm.eh
U __Z3Foom
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20131024/0669c799/attachment.html>
More information about the llvm-bugs
mailing list