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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [compare-2.c] - Blame information for rev 154

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 149 jeremybenn
/* Copyright (C) 2002 Free Software Foundation.
2
 
3
   Ensure that the composite comparison optimization doesn't misfire
4
   and attempt to combine a signed comparison with an unsigned one.
5
 
6
   Written by Roger Sayle, 3rd June 2002.  */
7
 
8
extern void abort (void);
9
 
10
int
11
foo (int x, int y)
12
{
13
  /* If miscompiled the following may become "x == y".  */
14
  return (x<=y) && ((unsigned int)x >= (unsigned int)y);
15
}
16
 
17
int
18
main ()
19
{
20
  if (! foo (-1,0))
21
    abort ();
22
  return 0;
23
}
24
 

powered by: WebSVN 2.1.0

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