xfree86: Remove an unlikely bit of #pragma
__USLC__ appears to mean the SCO OpenServer compiler, which configure.ac doesn't think is an OS the xfree86 ddx supports. The conditionals surrounding these pragmas effectively mean "if not gcc and not Sun C", and probably arbitrary pragmas aren't supported by arbitrary compilers. Reviewed-by: Julien Cristau <jcristau@debian.org> Signed-off-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
f7f9ccef1d
commit
b1d9bc8d1d
|
@ -1231,14 +1231,6 @@ inl(unsigned short port)
|
||||||
#if !defined(__SUNPRO_C)
|
#if !defined(__SUNPRO_C)
|
||||||
#include <sys/inline.h>
|
#include <sys/inline.h>
|
||||||
#endif
|
#endif
|
||||||
#if !defined(__SUNPRO_C) || defined(__USLC__)
|
|
||||||
#pragma asm partial_optimization outl
|
|
||||||
#pragma asm partial_optimization outw
|
|
||||||
#pragma asm partial_optimization outb
|
|
||||||
#pragma asm partial_optimization inl
|
|
||||||
#pragma asm partial_optimization inw
|
|
||||||
#pragma asm partial_optimization inb
|
|
||||||
#endif
|
|
||||||
#endif /* __GNUC__ */
|
#endif /* __GNUC__ */
|
||||||
|
|
||||||
#ifdef __alpha__
|
#ifdef __alpha__
|
||||||
|
|
Loading…
Reference in New Issue