Commit 8a78b96e authored by iposva@chromium.org's avatar iposva@chromium.org

Pointer difference is int and not long on Mac OS X.



git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1939 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 90ccd181
......@@ -92,9 +92,7 @@ typedef byte* Address;
// Fix for Mac OS X defining uintptr_t as "unsigned long":
#if defined(__APPLE__) && defined(__MACH__)
#undef V8PRIxPTR
#undef V8PRIdPTR
#define V8PRIxPTR "lx"
#define V8PRIdPTR "ld"
#endif
// Code-point values in Unicode 4.0 are 21 bits wide.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment