OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [pr19055-2.c] - Rev 437

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

/* { dg-do compile } */
/* { dg-options "-fdump-tree-gimple" } */
int f1(int a,int b,int c,int d)
{
  return ((a&d)|(b&c)) ^ (b&c);
}
 
int f2(int a,int b,int c,int d)
{
  return (b&c) ^ ((a&d)|(b&c));
}
 
int f3(int a,int b,int c,int d)
{
  return ((b&c)|(a&d)) ^ (b&c);
}
 
int f4(int a,int b,int c,int d)
{
  return (b&c) ^ ((b&c)|(a&d));
}
 
/* There should be no ^, 4 ~ and 12 &. */
/* { dg-final { scan-tree-dump-times "\\^" 0 "gimple"} } */
/* { dg-final { scan-tree-dump-times "~" 4 "gimple"} } */
/* { dg-final { scan-tree-dump-times "&" 12 "gimple"} } */
/* { dg-final { cleanup-tree-dump "gimple" } } */
 

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.