From 3553723f3ccc7571764b06d63a8c6e4a8f2c55bc Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 1 Jun 2012 13:06:37 -0700 Subject: Define DR_LEN_8 only if __x86_64__ is defined --- ChangeLog | 6 ++++++ sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a005bd7d42..e5f68f3383 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-06-01 H.J. Lu + + [BZ #14117] + * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h (DR_LEN_8): + Define only if __x86_64__ is defined. + 2012-06-01 Joseph Myers [BZ #14048] diff --git a/sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h b/sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h index 84a901743d..de10277e2b 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h +++ b/sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h @@ -54,7 +54,9 @@ #define DR_LEN_1 (0x0) /* Settings for data length to trap on */ #define DR_LEN_2 (0x4) #define DR_LEN_4 (0xC) -#define DR_LEN_8 (0x8) +#ifdef __x86_64__ +# define DR_LEN_8 (0x8) +#endif /* The low byte to the control register determine which registers are enabled. There are 4 fields of two bits. One bit is "local", meaning -- cgit 1.4.1