Build a shared host libiberty also for libcc1's benefit.
[official-gcc.git] / libgomp / oacc-plugin.c
blob6abb43c4c0ba6f89383ebb04f3b839548359d901
1 /* Copyright (C) 2014 Free Software Foundation, Inc.
3 Contributed by Mentor Embedded.
5 This file is part of the GNU OpenMP Library (libgomp).
7 Libgomp is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 /* Initialize and register OpenACC dispatch table from libgomp plugin. */
28 #include "libgomp.h"
29 #include "oacc-plugin.h"
30 #include "target.h"
32 void
33 ACC_plugin_register (struct gomp_device_descr *device)
35 ACC_register (device);
39 void
40 GOMP_PLUGIN_async_unmap_vars (void *ptr)
42 struct target_mem_desc *tgt = ptr;
44 gomp_unmap_vars (tgt, false);