OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.dg/] [init/] [array1.C] - Rev 779

Go to most recent revision | Compare with Previous | Blame | View Log

// Test that completing an array declared with a typedef doesn't change
// the typedef.

// { dg-do run }

typedef int iArr[];

const iArr array4={
  1, 2, 3, 4
};

const iArr array3={
  1, 2, 3
};

const iArr array5={
  1, 2, 3, 4, 5
};

int main()
{
  if (sizeof (array4)/sizeof (array4[0]) != 4
      || sizeof (array3)/sizeof (array3[0]) != 3
      || sizeof (array5)/sizeof (array5[0]) != 5)
    return 1;
}

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.