diff options
author | Adam Jackson <ajax@redhat.com> | 2014-07-22 10:59:04 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-07-28 12:18:31 -0700 |
commit | b1d9bc8d1d828b0dedda46da98628b47915e6a04 (patch) | |
tree | d15db79ccd7f761908cbaf96d974d08db1edba4b /hw/xfree86/common/compiler.h | |
parent | f7f9ccef1dc251a1b95ca698ac39bd0a47f0c8fa (diff) |
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>
Diffstat (limited to 'hw/xfree86/common/compiler.h')
-rw-r--r-- | hw/xfree86/common/compiler.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/hw/xfree86/common/compiler.h b/hw/xfree86/common/compiler.h index 0b2f98ae4..f691f9df0 100644 --- a/hw/xfree86/common/compiler.h +++ b/hw/xfree86/common/compiler.h @@ -1231,14 +1231,6 @@ inl(unsigned short port) #if !defined(__SUNPRO_C) #include <sys/inline.h> #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__ */ #ifdef __alpha__ |