view gcc/testsuite/gcc.dg/lto/20100423-2_1.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

typedef unsigned char uch;
uch inbuf[8];
extern unsigned insize;
unsigned inptr; 
int to_stdout = 0;
int force = 0;
extern int fill_inbuf (int);
int get_method(int in)
{
  char magic[2];
  if (force && to_stdout)
    magic[0] = (char)(inptr < insize ? inbuf[inptr++] : fill_inbuf(1));
  else
    magic[1] = (char)(inptr < insize ? inbuf[inptr++] : fill_inbuf(0));
}
int main()
{
  return 0;
}