view gcc/testsuite/gcc.dg/torture/pr71866.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-additional-options "-ftree-pre -fcode-hoisting" } */

__extension__ typedef __UINTPTR_TYPE__ uintptr_t;

typedef unsigned char u8;
extern unsigned long pci_io_base;
u8 in_8 (const volatile void *);
int eeh_enabled ();
void eeh_check_failure ();
static inline 
u8 eeh_readb(const volatile void *addr)
{
  u8 val = in_8(addr);
  if (((val) == (u8)~0 && eeh_enabled()))   eeh_check_failure();
  return val;
}
extern struct ppc_pci_io {
    void (*outb) (u8 val, unsigned long port);
}
ppc_pci_io;
static inline
u8 readb (const volatile void * addr)
{
  return eeh_readb((addr));
}
static inline
u8 inb (unsigned long port)
{
  return readb((volatile void *)(uintptr_t)pci_io_base + port);
}
static inline
void outb (u8 val, unsigned long port)
{
  if (ppc_pci_io.outb != ((void *)0)) ppc_pci_io.outb (val, port);
};
void frob_econtrol(unsigned long base_hi, unsigned char m, unsigned char v)
{
  unsigned char ectr = 0;
  if (m != 0xff)   ectr = inb((base_hi + 0x2));
  outb((ectr & ~m) ^ v, (base_hi + 0x2));
}