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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [loop-unswitch-1.c] - Blame information for rev 154

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

Line No. Rev Author Line
1 149 jeremybenn
/* For PR rtl-optimization/27735  */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -funswitch-loops" } */
4
 
5
void set_color(void);
6
void xml_colorize_line(unsigned int *p, int state)
7
{
8
  int c;
9
  switch(state)
10
    {
11
    case 1:
12
      goto parse_tag;
13
    case 2:
14
      goto parse_comment;
15
    }
16
 
17
  for(;;)
18
    {
19
      c = *p;
20
      if (c == '<' && state == 0)
21
        {
22
parse_comment: ;
23
          while (*p != '\n')
24
            state = 3;
25
parse_tag: ;
26
          while (*p != '\n')
27
            state = 0;
28
          set_color();
29
        }
30
      else
31
        p++;
32
    }
33
}
34
 

powered by: WebSVN 2.1.0

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