From: Richard Kenner Date: Thu, 13 Apr 1995 12:45:11 +0000 (-0400) Subject: Don't #include stamp.h for WINNT. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7daa56f55b690b94cebc80b2ef8a7d486dca2e21;p=gcc.git Don't #include stamp.h for WINNT. (input_operand, case CONST): Allow ptr_mode and DImode. From-SVN: r9369 --- diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index afa71680dad..335857300d4 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -322,7 +322,8 @@ input_operand (op, mode) case LABEL_REF: case SYMBOL_REF: case CONST: - return mode == DImode; + /* This handles both the Windows/NT and OSF cases. */ + return mode == ptr_mode || mode == DImode; case REG: return 1; @@ -1209,7 +1210,7 @@ direct_return () /* Write a version stamp. Don't write anything if we are running as a cross-compiler. Otherwise, use the versions in /usr/include/stamp.h. */ -#ifndef CROSS_COMPILE +#if !defined(CROSS_COMPILE) && !defined(WINNT) #include #endif