+2015-11-24 Ilya Verbin <ilya.verbin@intel.com>
+
+ * c-parser.c (c_parser_oacc_declare): Replace "ifdef ENABLE_OFFLOADING"
+ with "if (ENABLE_OFFLOADING)".
+
2015-11-23 David Malcolm <dmalcolm@redhat.com>
PR objc/68438
if (node != NULL)
{
node->offloadable = 1;
-#ifdef ENABLE_OFFLOADING
- g->have_offload = true;
- if (is_a <varpool_node *> (node))
+ if (ENABLE_OFFLOADING)
{
- vec_safe_push (offload_vars, decl);
- node->force_output = 1;
+ g->have_offload = true;
+ if (is_a <varpool_node *> (node))
+ {
+ vec_safe_push (offload_vars, decl);
+ node->force_output = 1;
+ }
}
-#endif
}
}
}
+2015-11-24 Ilya Verbin <ilya.verbin@intel.com>
+
+ * parser.c (cp_parser_oacc_declare): Replace "ifdef ENABLE_OFFLOADING"
+ with "if (ENABLE_OFFLOADING)".
+
2015-11-23 Igor Zamyatin <igor.zamyatin@intel.com>
PR c++/68001
if (node != NULL)
{
node->offloadable = 1;
-#ifdef ENABLE_OFFLOADING
- g->have_offload = true;
- if (is_a <varpool_node *> (node))
+ if (ENABLE_OFFLOADING)
{
- vec_safe_push (offload_vars, decl);
- node->force_output = 1;
+ g->have_offload = true;
+ if (is_a <varpool_node *> (node))
+ {
+ vec_safe_push (offload_vars, decl);
+ node->force_output = 1;
+ }
}
-#endif
}
}
}