WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
[patch]
New patch with changelog.
33902.patch (text/plain), 877 bytes, created by
Lyon Chen
on 2010-01-21 09:29:03 PST
(
hide
)
Description:
New patch with changelog.
Filename:
MIME Type:
Creator:
Lyon Chen
Created:
2010-01-21 09:29:03 PST
Size:
877 bytes
patch
obsolete
>diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog >index ca3e083..9d0289b 100644 >--- a/JavaScriptCore/ChangeLog >+++ b/JavaScriptCore/ChangeLog >@@ -1,3 +1,12 @@ >+2010-01-21 Lyon Chen <liachen@rim.com> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Opcode.h use const void* for Opcode cause error #1211 for RVCT compiler >+ https://bugs.webkit.org/show_bug.cgi?id=33902 >+ >+ * bytecode/Opcode.h: >+ > 2010-01-20 Mark Rowe <mrowe@apple.com> > > Build fix. >diff --git a/JavaScriptCore/bytecode/Opcode.h b/JavaScriptCore/bytecode/Opcode.h >index b11113b..e88f051 100644 >--- a/JavaScriptCore/bytecode/Opcode.h >+++ b/JavaScriptCore/bytecode/Opcode.h >@@ -196,7 +196,7 @@ namespace JSC { > #undef VERIFY_OPCODE_ID > > #if HAVE(COMPUTED_GOTO) >- typedef const void* Opcode; >+ typedef void* Opcode; > #else > typedef OpcodeID Opcode; > #endif
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 33902
:
47035
| 47128 |
47131