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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [tree-ssa/] [sra-1.C] - Rev 823

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

/* https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=223576 */

/* SRA failed to canonicalize bit-field types, introducing type
   mismatches.  */

/* { dg-do compile } */
/* { dg-options "-O2" } */

struct A
{
  int a:16;
  /* These dummy bit-fields are here to prevent GCC 4.2+ from merging
     the bit-field compares into a single word compare, which disables
     SRA.  */
  int a2:16;
  int a3:16;
  int a4:16;
  int b:8;
  bool operator==(A const x) const
  {
    return (this->a == x.a && this->b == x.b);
  }
};

bool
foo (A const x, A const y)
{
  return x == y;
}

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.