Make fopenacc an LTO option

2015-01-23  Tom de Vries  <tom@codesourcery.com>

	PR libgomp/64672
	* lto-opts.c (lto_write_options): Output non-explicit conservative
	-fno-openacc.
	* lto-wrapper.c (merge_and_complain): Handle merging -fopenacc.
	(append_compiler_options): Pass -fopenacc through.

	* c.opt (fopenacc): Mark as LTO option.

	* lang.opt (fopenacc): Mark as LTO option.

	* testsuite/libgomp.oacc-c-c++-common/abort-5.c: New test.

From-SVN: r220038
This commit is contained in:
Tom de Vries 2015-01-23 12:54:16 +00:00 committed by Tom de Vries
parent 1506ae0e1e
commit a0c88d0629
9 changed files with 49 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2015-01-23 Tom de Vries <tom@codesourcery.com>
PR libgomp/64672
* lto-opts.c (lto_write_options): Output non-explicit conservative
-fno-openacc.
* lto-wrapper.c (merge_and_complain): Handle merging -fopenacc.
(append_compiler_options): Pass -fopenacc through.
2015-01-23 Tom de Vries <tom@codesourcery.com>
PR libgomp/64707

View File

@ -1,3 +1,8 @@
2015-01-23 Tom de Vries <tom@codesourcery.com>
PR libgomp/64672
* c.opt (fopenacc): Mark as LTO option.
2015-01-23 Tom de Vries <tom@codesourcery.com>
PR libgomp/64707

View File

@ -1284,7 +1284,7 @@ ObjC ObjC++ Var(flag_objc1_only)
Conform to the Objective-C 1.0 language as implemented in GCC 4.0
fopenacc
C ObjC C++ ObjC++ Var(flag_openacc)
C ObjC C++ ObjC++ LTO Var(flag_openacc)
Enable OpenACC
fopenmp

View File

@ -1,3 +1,8 @@
2015-01-23 Tom de Vries <tom@codesourcery.com>
PR libgomp/64672
* lang.opt (fopenacc): Mark as LTO option.
2015-01-23 Tom de Vries <tom@codesourcery.com>
PR libgomp/64707

View File

@ -567,7 +567,7 @@ Fortran Var(flag_module_private)
Set default accessibility of module entities to PRIVATE.
fopenacc
Fortran
Fortran LTO
; Documented in C
fopenmp

View File

@ -169,6 +169,10 @@ lto_write_options (void)
if (!global_options_set.x_flag_openmp
&& !global_options.x_flag_openmp)
append_to_collect_gcc_options (&temporary_obstack, &first_p, "-fno-openmp");
if (!global_options_set.x_flag_openacc
&& !global_options.x_flag_openacc)
append_to_collect_gcc_options (&temporary_obstack, &first_p,
"-fno-openacc");
/* Append options from target hook and store them to offload_lto section. */
if (lto_stream_offload_p)

View File

@ -272,6 +272,7 @@ merge_and_complain (struct cl_decoded_option **decoded_options,
case OPT_ftrapping_math:
case OPT_fwrapv:
case OPT_fopenmp:
case OPT_fopenacc:
/* For selected options we can merge conservatively. */
for (j = 0; j < *decoded_options_count; ++j)
if ((*decoded_options)[j].opt_index == foption->opt_index)
@ -492,6 +493,7 @@ append_compiler_options (obstack *argv_obstack, struct cl_decoded_option *opts,
case OPT_ftrapping_math:
case OPT_fwrapv:
case OPT_fopenmp:
case OPT_fopenacc:
case OPT_ftrapv:
case OPT_fstrict_overflow:
case OPT_foffload_abi_:

View File

@ -1,3 +1,8 @@
2015-01-23 Tom de Vries <tom@codesourcery.com>
PR libgomp/64672
* testsuite/libgomp.oacc-c-c++-common/abort-5.c: New test.
2015-01-23 Tom de Vries <tom@codesourcery.com>
PR libgomp/64707

View File

@ -0,0 +1,18 @@
/* { dg-do run } */
/* { dg-additional-options "-flto" { target lto } } */
#include <stdlib.h>
int
main (int argc, char **argv)
{
#pragma acc parallel
{
if (argc != 1)
abort ();
}
return 0;
}