nvptx.c (nvptx_assemble_undefined_decl): Check it's not a constant pool object.
authorNathan Sidwell <nathan@acm.org>
Wed, 30 Dec 2015 15:52:59 +0000 (15:52 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Wed, 30 Dec 2015 15:52:59 +0000 (15:52 +0000)
* config/nvptx/nvptx.c (nvptx_assemble_undefined_decl): Check
it's not a constant pool object.

From-SVN: r232003

gcc/ChangeLog
gcc/config/nvptx/nvptx.c

index 1643888b2c880935c46e98301e893673e2420067..332523c6242415a788f0da10727d2f6604e7c9f3 100644 (file)
@@ -1,3 +1,8 @@
+2015-12-30  Nathan Sidwell  <nathan@acm.org>
+
+       * config/nvptx/nvptx.c (nvptx_assemble_undefined_decl): Check
+       it's not a constant pool object.
+
 2015-12-29  Michael Meissner  <meissner@linux.vnet.ibm.com>
 
        * config/rs6000/rs6000.c (init_float128_ieee): Remove IEEE 128-bit
index 0f232a3641e6d04770796f25c1fbf8ef59ac4e3e..5f953a13a1f127bff5eeae8cb694143322aa5fd2 100644 (file)
@@ -1718,6 +1718,11 @@ nvptx_globalize_label (FILE *, const char *)
 static void
 nvptx_assemble_undefined_decl (FILE *file, const char *name, const_tree decl)
 {
+  /* The middle end can place constant pool decls into the varpool as
+     undefined.  Until that is fixed, catch the problem here.  */
+  if (DECL_IN_CONSTANT_POOL (decl))
+    return;
+
   write_var_marker (file, false, TREE_PUBLIC (decl), name);
 
   fprintf (file, "\t.extern ");