diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2015-10-27 20:22:50 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2015-10-27 20:22:50 +0000 |
commit | adc2b4d79c153b3036ba7e87f578e9bfea919482 (patch) | |
tree | c921d8d241c188e12fac119ab8ef4df2dd716284 /gcc | |
parent | 765dd3918b6b52d766a5034080515acbdda738f0 (diff) | |
download | gcc-adc2b4d79c153b3036ba7e87f578e9bfea919482.zip gcc-adc2b4d79c153b3036ba7e87f578e9bfea919482.tar.gz gcc-adc2b4d79c153b3036ba7e87f578e9bfea919482.tar.bz2 |
* omp-low.c (pass_oacc_device_lower::execute): Ignore errors.
From-SVN: r229462
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/omp-low.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 19a6809..198d534 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,8 @@ 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.h (enum ifn_unique_kind): New. diff --git a/gcc/omp-low.c b/gcc/omp-low.c index ad7c017..8262fa3 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -17637,7 +17637,7 @@ public: /* opt_pass methods: */ virtual unsigned int execute (function *) { - bool gate = (flag_openacc != 0 && !seen_error ()); + bool gate = flag_openacc != 0; if (!gate) return 0; |