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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [sms-8.c] - Blame information for rev 298

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 298 jeremybenn
/*  This test is a reduced test case for a bug that caused
2
    bootstrapping with -fmodulo-sched.  Related to a broken anti-dep
3
    that was not fixed by reg-moves.  */
4
 
5
 /* { dg-do run } */
6
 /* { dg-options "-O2 -fmodulo-sched -fmodulo-sched-allow-regmoves -fdump-rtl-sms" } */
7
 
8
extern void abort (void);
9
 
10
__attribute__ ((noinline))
11
unsigned long long
12
foo (long long ixi, unsigned ctr)
13
{
14
  unsigned long long irslt = 1;
15
  long long ix = ixi;
16
 
17
  for (; ctr; ctr--)
18
    {
19
      irslt *= ix;
20
      ix *= ix;
21
    }
22
 
23
  if (irslt != 14348907)
24
    abort ();
25
  return irslt;
26
}
27
 
28
 
29
int
30
main ()
31
{
32
  unsigned long long res;
33
 
34
  res = foo (3, 4);
35
  return 0;
36
}
37
 
38
/* { dg-final { scan-rtl-dump-times "SMS succeeded" 1 "sms" { target powerpc*-*-* } } } */
39
/* { dg-final { cleanup-rtl-dump "sms" } } */
40
 
41
 

powered by: WebSVN 2.1.0

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