Commit adc2b4d7 by Nathan Sidwell Committed by Nathan Sidwell

* omp-low.c (pass_oacc_device_lower::execute): Ignore errors.

From-SVN: r229462
parent 765dd391
2015-10-27 Nathan Sidwell <nathan@codesourcery.com> 2015-10-27 Nathan Sidwell <nathan@codesourcery.com>
* omp-low.c (pass_oacc_device_lower::execute): Ignore errors.
2015-10-27 Nathan Sidwell <nathan@codesourcery.com>
* internal-fn.c (expand_UNIQUE): New. * internal-fn.c (expand_UNIQUE): New.
* internal-fn.h (enum ifn_unique_kind): New. * internal-fn.h (enum ifn_unique_kind): New.
...@@ -17637,7 +17637,7 @@ public: ...@@ -17637,7 +17637,7 @@ public:
/* opt_pass methods: */ /* opt_pass methods: */
virtual unsigned int execute (function *) virtual unsigned int execute (function *)
{ {
bool gate = (flag_openacc != 0 && !seen_error ()); bool gate = flag_openacc != 0;
if (!gate) if (!gate)
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment