On Tue, Aug 25, 2015 at 10:35:37AM -0700, Aldy Hernandez wrote:
> diff --git a/libgomp/env.c b/libgomp/env.c
> index 65a6851..0569521 100644
> --- a/libgomp/env.c
> +++ b/libgomp/env.c
> @@ -69,7 +69,7 @@ struct gomp_task_icv gomp_global_icv = {
>
> unsigned long gomp_max_active_levels_var = INT
On 08/25/2015 10:35 AM, Aldy Hernandez wrote:
-int gomp_max_task_priority_var = 0;
+static int gomp_max_task_priority_var = 0;
Sorry I snuck that in there. The variable is unused elsewhere, might as
well make it static.
Aldy