Backported from mainline
2019-11-27 Jakub Jelinek <jakub@redhat.com>
PR debug/92664
* dwarf2out.c (lookup_filename): Use "<stdin>" instead of "".
From-SVN: r279658
2019-12-20 Jakub Jelinek <jakub@redhat.com>
Backported from mainline
+ 2019-11-27 Jakub Jelinek <jakub@redhat.com>
+
+ PR debug/92664
+ * dwarf2out.c (lookup_filename): Use "<stdin>" instead of "".
+
2019-11-26 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/92644
if (!file_name)
return NULL;
+ if (!file_name[0])
+ file_name = "<stdin>";
+
dwarf_file_data **slot
= file_table->find_slot_with_hash (file_name, htab_hash_string (file_name),
INSERT);