From 2a8baa8fb0e5839182b0b7ff5dac1e7dec309180 Mon Sep 17 00:00:00 2001 From: Torbjorn Granlund Date: Wed, 5 Dec 2012 11:05:21 +0100 Subject: Refine cpp test for vax. --- longlong.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'longlong.h') diff --git a/longlong.h b/longlong.h index cb61d7689..6df3c5f1a 100644 --- a/longlong.h +++ b/longlong.h @@ -1766,7 +1766,7 @@ extern UWtype __MPN(udiv_qrnnd) (UWtype *, UWtype, UWtype, UWtype); __CLOBBER_CC) #endif -#if defined (__vax__) && W_TYPE_SIZE == 32 +#if (defined (__vax) || defined (__vax__)) && W_TYPE_SIZE == 32 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ __asm__ ("addl2 %5,%1\n\tadwc %3,%0" \ : "=g" (sh), "=&g" (sl) \ @@ -1806,7 +1806,7 @@ extern UWtype __MPN(udiv_qrnnd) (UWtype *, UWtype, UWtype, UWtype); : "g" ((USItype) (x))); \ } while (0) #endif -#endif /* __vax__ */ +#endif /* vax */ #if defined (__z8000__) && W_TYPE_SIZE == 16 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ -- cgit v1.2.1