Title: [119729] trunk/Source/_javascript_Core
- Revision
- 119729
- Author
- wi...@igalia.com
- Date
- 2012-06-07 09:05:19 -0700 (Thu, 07 Jun 2012)
Log Message
Unreviewed build fix after r119593.
* llint/LLIntOfflineAsmConfig.h (OFFLINE_ASM_GLOBAL_LABEL): Fix
uses of "name" to be "label", the macro's parameter. Otherwise we
serialize mentions of the literal symbol "name" into the objcode.
Causes a build error using GNU ld (not gold).
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (119728 => 119729)
--- trunk/Source/_javascript_Core/ChangeLog 2012-06-07 16:03:31 UTC (rev 119728)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-06-07 16:05:19 UTC (rev 119729)
@@ -1,3 +1,12 @@
+2012-06-07 Andy Wingo <wi...@igalia.com>
+
+ Unreviewed build fix after r119593.
+
+ * llint/LLIntOfflineAsmConfig.h (OFFLINE_ASM_GLOBAL_LABEL): Fix
+ uses of "name" to be "label", the macro's parameter. Otherwise we
+ serialize mentions of the literal symbol "name" into the objcode.
+ Causes a build error using GNU ld (not gold).
+
2012-06-06 Ryosuke Niwa <rn...@webkit.org>
Chromium build fix attempt. Why do we need to list these files in gyp!?
Modified: trunk/Source/_javascript_Core/llint/LLIntOfflineAsmConfig.h (119728 => 119729)
--- trunk/Source/_javascript_Core/llint/LLIntOfflineAsmConfig.h 2012-06-07 16:03:31 UTC (rev 119728)
+++ trunk/Source/_javascript_Core/llint/LLIntOfflineAsmConfig.h 2012-06-07 16:05:19 UTC (rev 119729)
@@ -94,14 +94,14 @@
#if CPU(ARM_THUMB2)
#define OFFLINE_ASM_GLOBAL_LABEL(label) \
".globl " SYMBOL_STRING(label) "\n" \
- HIDE_SYMBOL(name) "\n" \
+ HIDE_SYMBOL(label) "\n" \
".thumb\n" \
".thumb_func " THUMB_FUNC_PARAM(label) "\n" \
SYMBOL_STRING(label) ":\n"
#else
#define OFFLINE_ASM_GLOBAL_LABEL(label) \
".globl " SYMBOL_STRING(label) "\n" \
- HIDE_SYMBOL(name) "\n" \
+ HIDE_SYMBOL(label) "\n" \
SYMBOL_STRING(label) ":\n"
#endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes