mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
Bug 925173 - don't depend on HAVE_64BIT_OS in FileUtils.cpp; use the standard __LP64__ macro instead; r=bsmedberg
This point in the code is Mac-specific, so we are free to use Mac-specific macros here. Just use __LP64__ instead of HAVE_64BIT_OS.
This commit is contained in:
parent
9572a6752b
commit
fac6a479ca
@ -251,7 +251,7 @@ static const uint32_t CPU_TYPE = CPU_TYPE_POWERPC64;
|
||||
#error Unsupported CPU type
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_64BIT_OS
|
||||
#ifdef __LP64__
|
||||
#undef LC_SEGMENT
|
||||
#define LC_SEGMENT LC_SEGMENT_64
|
||||
#undef MH_MAGIC
|
||||
|
Loading…
Reference in New Issue
Block a user