Revision: 21503
Author:   [email protected]
Date:     Mon May 26 19:43:01 2014 UTC
Log:      Buildfix for arm

[email protected]
LOG=n
BUG=none

Review URL: https://codereview.chromium.org/299353006
http://code.google.com/p/v8/source/detail?r=21503

Modified:
 /branches/bleeding_edge/src/utils.h

=======================================
--- /branches/bleeding_edge/src/utils.h Mon May 26 19:33:15 2014 UTC
+++ /branches/bleeding_edge/src/utils.h Mon May 26 19:43:01 2014 UTC
@@ -345,7 +345,7 @@
 #elif defined(V8_HOST_ARCH_ARM)
 typedef void (*MemCopyUint8Function)(uint8_t* dest, const uint8_t* src,
                                      size_t size);
-MemCopyUint8Function memcopy_uint8_function;
+extern MemCopyUint8Function memcopy_uint8_function;
 void MemCopyUint8Wrapper(uint8_t* dest, const uint8_t* src, size_t chars) {
   memcpy(dest, src, chars);
 }
@@ -361,7 +361,7 @@

typedef void (*MemCopyUint16Uint8Function)(uint16_t* dest, const uint8_t* src,
                                            size_t size);
-MemCopyUint16Uint8Function memcopy_uint16_uint8_function;
+extern MemCopyUint16Uint8Function memcopy_uint16_uint8_function;
 void MemCopyUint16Uint8Wrapper(uint16_t* dest, const uint8_t* src,
                                size_t chars);
// For values < 12, the assembler function is slower than the inlined C code.
@@ -373,7 +373,7 @@
 #elif defined(V8_HOST_ARCH_MIPS)
 typedef void (*MemCopyUint8Function)(uint8_t* dest, const uint8_t* src,
                                      size_t size);
-MemCopyUint8Function memcopy_uint8_function;
+extern MemCopyUint8Function memcopy_uint8_function;
 V8_INLINE void MemCopyUint8Wrapper(uint8_t* dest, const uint8_t* src,
                                    size_t chars) {
   memcpy(dest, src, chars);

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to