]> git.pld-linux.org Git - packages/candl.git/blob - candl-0.6.3.patch
- diff -Nur cand-0.6.2 candl-0.6.3 with autogenerated files removed
[packages/candl.git] / candl-0.6.3.patch
1 diff -Nur candl-0.6.2/ChangeLog candl-0.6.3/ChangeLog
2 --- candl-0.6.2/ChangeLog       2012-03-12 17:19:38.000000000 +0100
3 +++ candl-0.6.3/ChangeLog       2013-02-19 06:27:35.000000000 +0100
4 @@ -1,3 +1,11 @@
5 +2013-02-18  Louis-Noel Pouchet  <pouchet@cs.ucla.edu>
6 +
7 +       * configure.ac: Bump to candl-0.6.3.
8 +
9 +2012-10-26  Louis-Noel Pouchet  <pouchet@cse.ohio-state.edu>
10 +
11 +       * source/dependence.c: Fix 2 bugs in scalar privatization.
12 +
13  2012-03-09  Louis-Noel Pouchet  <pouchet@cse.ohio-state.edu>
14  
15         * configure.in: Bump to candl-0.6.2.
16 diff -Nur candl-0.6.2/configure.in candl-0.6.3/configure.in
17 --- candl-0.6.2/configure.in    2012-03-12 17:45:26.000000000 +0100
18 +++ candl-0.6.3/configure.in    2013-02-19 06:27:35.000000000 +0100
19 @@ -34,7 +34,7 @@
20  
21  AC_PREREQ(2.13)
22  dnl Fill here the @bug email adress.
23 -AC_INIT([candl], [0.6.2], [cedric.bastoul@inria.fr,pouchet@cse.ohio-state.edu])
24 +AC_INIT([candl], [0.6.3], [cedric.bastoul@inria.fr,pouchet@cs.ucla.edu])
25  dnl A common file, which serve as a test.
26  AC_CONFIG_SRCDIR([include/candl/program.h])
27  dnl Put as most as possible configuration files to an auxialiry
28 diff -Nur candl-0.6.2/include/candl/candl.h candl-0.6.3/include/candl/candl.h
29 --- candl-0.6.2/include/candl/candl.h   2012-03-12 17:45:37.000000000 +0100
30 +++ candl-0.6.3/include/candl/candl.h   2013-02-19 06:40:15.000000000 +0100
31 @@ -42,7 +42,7 @@
32  #ifndef CANDL_H
33  # define CANDL_H
34  
35 -# define CANDL_RELEASE "0.6.2"
36 +# define CANDL_RELEASE "0.6.3"
37  # define CANDL_VERSION "64"
38  # define CANDL_SUPPORTS_SCOPLIB
39  # define CANDL_SUPPORTS_ISL
40 diff -Nur candl-0.6.2/source/dependence.c candl-0.6.3/source/dependence.c
41 --- candl-0.6.2/source/dependence.c     2012-03-12 17:19:37.000000000 +0100
42 +++ candl-0.6.3/source/dependence.c     2013-02-19 06:27:31.000000000 +0100
43 @@ -2261,14 +2261,17 @@
44                 pred->next = next;
45               free (tmp);
46             }
47 -         pred = tmp;
48 +         else
49 +           pred = tmp;
50           tmp = next;
51  
52 -         continue;
53         }
54 -      /* Go to the next victim. */
55 -      pred = tmp;
56 -      tmp = tmp->next;
57 +      else
58 +       {
59 +         /* Go to the next victim. */
60 +         pred = tmp;
61 +         tmp = tmp->next;
62 +       }
63      }
64  }
65  
66 @@ -2455,7 +2458,7 @@
67                           for (l = 0; l < priv_buff_size; ++l)
68                             program->scalars_privatizable[l] = -1;
69                         }
70 -                     if (nb_priv == priv_buff_size)
71 +                     if (nb_priv == priv_buff_size - 2)
72                         {
73                           program->scalars_privatizable =
74                             realloc(program->scalars_privatizable,
This page took 0.077993 seconds and 4 git commands to generate.