-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Section printed into .ll file #1457
Comments
assigned to @lattner |
This is a ELF-specific bug in the C++ FE. Patch sent to llvm-commits, testcase here: -Chris |
Workaround was removed as well. |
This is not fixed. The Regression/C++Frontend/2007-01-06-ELF-Thunk-Sections.cpp |
Hmm. Strange. I've got linker errors due to presense of such sections. Now:
Will check the testcase. |
Reid, could you please attach the LLVM bytecode generated by llvm-g++ from the |
x86-linux bytecode for test case |
This fixes the fix. Reid, plz verify and remove the xfail from the testcase if ok now. http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20070108/042246.html Thanks, -Chris |
Works now. |
Extended Description
Attached source (from Qt) will cause sections of form "gnu.linkonce.t" to be
printed into resulting LLVM bytecode (e.g. when compiling with -emit-llvm -S).
This causes misc linker problems.
A quick workaround was introduced:
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20070101/042142.html
It should be reverted after this bug fixed.
The text was updated successfully, but these errors were encountered: