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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [divcmp-5.c] - Blame information for rev 688

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 688 jeremybenn
/* PR middle-end/26561 */
2
 
3
extern void abort(void);
4
 
5
int always_one_1 (int a)
6
{
7
  if (a/100 >= -999999999)
8
    return 1;
9
  else
10
    return 0;
11
}
12
 
13
int always_one_2 (int a)
14
{
15
  if (a/100 < -999999999)
16
    return 0;
17
  else
18
    return 1;
19
}
20
 
21
int main(void)
22
{
23
  if (always_one_1 (0) != 1)
24
    abort ();
25
 
26
  if (always_one_2 (0) != 1)
27
    abort ();
28
 
29
  return 0;
30
}
31
 

powered by: WebSVN 2.1.0

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