@@ -468,15 +468,12 @@ main (int argc, char **argv)
obstack_ptr_grow (&argv_obstack, str);
}
- bool fopenacc = false;
for (int ix = 1; ix != argc; ix++)
{
if (!strcmp (argv[ix], "-v"))
verbose = true;
else if (!strcmp (argv[ix], "-save-temps"))
save_temps = true;
- else if (!strcmp (argv[ix], "-fopenacc"))
- fopenacc = true;
if (!strcmp (argv[ix], "-o") && ix + 1 != argc)
outname = argv[++ix];
@@ -491,8 +488,8 @@ main (int argc, char **argv)
fatal_error (input_location, "cannot open '%s'", ptx_cfile_name);
/* PR libgomp/65099: Currently, we only support offloading in 64-bit
- configurations, and only for OpenACC offloading. */
- if (!target_ilp32 && fopenacc)
+ configurations. */
+ if (!target_ilp32)
{
ptx_name = make_temp_file (".mkoffload");
obstack_ptr_grow (&argv_obstack, "-o");