view gcc/testsuite/gcc.dg/pr77862.c @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
line wrap: on
line source


/* PR tree-optimization/77862 */
/* { dg-do compile } */
/* { dg-require-effective-target fpic } */
/* { dg-options "-O2 -fPIC -w" } */

struct paramed_type
{
};
int a;

int memcmp ( int*, void *, long );

void
cur_token (void)
{
  if ( 1 != a || memcmp ( cur_token, "", a ) )
    return;
  struct paramed_type b = { };
}