WebKit Bugzilla
Attachment 373354 Details for
Bug 180625
: Link-Time-Optimizations could be used
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to allow -flto=n; tested against webkit-gtk-2.24.2
lto.patch (text/plain), 607 bytes, created by
Walter Hüttenmeyer
on 2019-07-02 13:07:24 PDT
(
hide
)
Description:
Patch to allow -flto=n; tested against webkit-gtk-2.24.2
Filename:
MIME Type:
Creator:
Walter Hüttenmeyer
Created:
2019-07-02 13:07:24 PDT
Size:
607 bytes
patch
obsolete
>--- a/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp 2016-01-14 21:20:42.304902905 +0100 >+++ b/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp 2016-01-14 21:25:52.000000000 +0100 >@@ -23,6 +23,15 @@ > * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. > */ > >+// If we are using gcc >= 5.0, make sure that this compilation unit is >+// compiled with -fno-lto, because we may be using inline assembly >+// included from LLIntAssembly.h >+#ifdef __GNUC__ >+#if __GNUC__ >= 5 >+#pragma GCC optimize ("no-lto") >+#endif >+#endif >+ > #include "config.h" > #include "LowLevelInterpreter.h"
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 180625
:
328914
| 373354