mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
(sprintf_vma, fprintf_vma): New macros.
(uint64_typeHIGH, uint64_typeLOW): Comment with HOST_64_BIT so they get copied to bfd.h.
This commit is contained in:
parent
d110544cd0
commit
5802eb8f93
@ -10,8 +10,11 @@
|
||||
#include <alloca.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
/* Make the basic types 64-bit quantities on the host */
|
||||
#define HOST_64_BIT long
|
||||
/* Make the basic types 64-bit quantities on the host.
|
||||
Also provide the support macros BFD needs. */
|
||||
#define HOST_64_BIT long
|
||||
#define sprintf_vma(s,x) sprintf (s, "%016lx", x) /* HOST_64_BIT */
|
||||
#define fprintf_vma(f,x) fprintf (f, "%016lx", x) /* HOST_64_BIT */
|
||||
|
||||
typedef unsigned long uint64e_type;
|
||||
typedef unsigned long uint64_type;
|
||||
@ -21,7 +24,7 @@ typedef long int64_type;
|
||||
|
||||
/* These must have type unsigned long because they are used as
|
||||
arguments in printf functions. */
|
||||
#define uint64_typeLOW(x) ((unsigned long) (((x) & 0xffffffff)))
|
||||
#define uint64_typeHIGH(x) ((unsigned long) (((x) >> 32) & 0xffffffff))
|
||||
#define uint64_typeLOW(x) ((unsigned long) (((x) & 0xffffffff))) /* HOST_64_BIT */
|
||||
#define uint64_typeHIGH(x) ((unsigned long) (((x) >> 32) & 0xffffffff)) /* HOST_64_BIT */
|
||||
|
||||
#include "fopen-same.h"
|
||||
|
Loading…
Reference in New Issue
Block a user