Changing LLD to 'lld' because it raises compile warnings in interpret.cc

on Mac OS X (make process=interpret).
This commit is contained in:
Nandor Kracser 2012-07-09 21:05:11 +02:00
parent 2ab304acb8
commit 938c4b3563

View File

@ -145,7 +145,11 @@ typedef intptr_t __attribute__((__may_alias__)) intptr_alias_t;
# define LLD "I64d"
# define ULD "I64x"
# else
# define LLD "ld"
# ifdef __APPLE__
# define LLD "lld"
# else
# define LLD "ld"
# endif
# define ULD "lu"
# endif
#else