aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.c-c++-common/function-not-offloaded-aux.c
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2018-12-14 13:48:56 +0000
committerTom de Vries <vries@gcc.gnu.org>2018-12-14 13:48:56 +0000
commitb0aba46ca6668ef16fa83ff146654a9bf946ff16 (patch)
tree2d768b42e3a31f9210ad81e2e41b2466bd284d01 /libgomp/testsuite/libgomp.c-c++-common/function-not-offloaded-aux.c
parent4f472e636f7e99c3bca2fb70bd5adc2bb07dad3d (diff)
downloadgcc-b0aba46ca6668ef16fa83ff146654a9bf946ff16.zip
gcc-b0aba46ca6668ef16fa83ff146654a9bf946ff16.tar.gz
gcc-b0aba46ca6668ef16fa83ff146654a9bf946ff16.tar.bz2
[offloading] Error on missing symbols
When compiling an OpenMP or OpenACC program containing a reference in the offloaded code to a symbol that has not been included in the offloaded code, the offloading compiler may ICE in lto1. Fix this by erroring out instead, mentioning the problematic symbol: ... error: variable 'var' has been referenced in offloaded code but hasn't been marked to be included in the offloaded code lto1: fatal error: errors during merging of translation units compilation terminated. ... Build x86_64 with nvptx accelerator and reg-tested libgomp. Build x86_64 and reg-tested libgomp. 2018-12-14 Tom de Vries <tdevries@suse.de> * lto-cgraph.c (verify_node_partition): New function. (input_overwrite_node, input_varpool_node): Use verify_node_partition. * testsuite/libgomp.c-c++-common/function-not-offloaded-aux.c: New test. * testsuite/libgomp.c-c++-common/function-not-offloaded.c: New test. * testsuite/libgomp.c-c++-common/variable-not-offloaded.c: New test. * testsuite/libgomp.oacc-c-c++-common/function-not-offloaded.c: New test. * testsuite/libgomp.oacc-c-c++-common/variable-not-offloaded.c: New test. From-SVN: r267134
Diffstat (limited to 'libgomp/testsuite/libgomp.c-c++-common/function-not-offloaded-aux.c')
-rw-r--r--libgomp/testsuite/libgomp.c-c++-common/function-not-offloaded-aux.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libgomp/testsuite/libgomp.c-c++-common/function-not-offloaded-aux.c b/libgomp/testsuite/libgomp.c-c++-common/function-not-offloaded-aux.c
new file mode 100644
index 0000000..b8aa3da
--- /dev/null
+++ b/libgomp/testsuite/libgomp.c-c++-common/function-not-offloaded-aux.c
@@ -0,0 +1,12 @@
+/* { dg-skip-if "" { *-*-* } } */
+
+#pragma omp declare target
+extern int var;
+#pragma omp end declare target
+
+void __attribute__((noinline, noclone))
+foo (void)
+{
+ var++;
+}
+