OSDN Git Service

2012-04-03 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr44545.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fnon-call-exceptions -ftrapv -fexceptions" } */
3 int
4 DrawChunk(int *tabSize, int x) 
5 {
6   const int numEnds = 10;
7   int ends[numEnds + 2];
8   if (*tabSize > 0) {
9       x -= 5;
10       x = (x + *tabSize) / *tabSize;
11   }
12 }
13