summaryrefslogtreecommitdiff
path: root/gcc/dwarf2out.c
diff options
context:
space:
mode:
authorfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>2006-10-25 13:31:21 +0000
committerfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>2006-10-25 13:31:21 +0000
commit974a92fe2f6c1b88e29d8159437d5017757b54d3 (patch)
tree2d8c2eb8318621d7cf876ffa591de23643793bd9 /gcc/dwarf2out.c
parent1767be1efe7e703f99f5f0a8bd8a1afbfefd26bd (diff)
downloadgcc-974a92fe2f6c1b88e29d8159437d5017757b54d3.tar.gz
* dwarf2out.c (gen_compile_unit_die): Use IS_ABSOLUTE_PATH.
(file_table_relative_p): Likewise. (dwarf2out_finish): Likewise. (file_name_acquire): Use DIR_SEPARATOR and DIR_SEPARATOR_2. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118033 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r--gcc/dwarf2out.c22
1 files changed, 17 insertions, 5 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 0b655b44d51..6c714f9f384 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -7657,7 +7657,7 @@ file_name_acquire (void ** slot, void *data)
/* Skip all leading "./". */
f = d->filename;
- while (f[0] == '.' && f[1] == '/')
+ while (f[0] == '.' && IS_DIR_SEPARATOR (f[1]))
f += 2;
/* Create a new array entry. */
@@ -7666,7 +7666,19 @@ file_name_acquire (void ** slot, void *data)
fi->file_idx = d;
/* Search for the file name part. */
- f = strrchr (f, '/');
+ f = strrchr (f, DIR_SEPARATOR);
+#if defined (DIR_SEPARATOR_2)
+ {
+ char *g = strrchr (files[i].path, DIR_SEPARATOR_2);
+
+ if (g != NULL)
+ {
+ if (f == NULL || f < g)
+ f = g;
+ }
+ }
+#endif
+
fi->fname = f == NULL ? fi->path : f + 1;
return 1;
}
@@ -12288,7 +12300,7 @@ gen_compile_unit_die (const char *filename)
{
add_name_attribute (die, filename);
/* Don't add cwd for <built-in>. */
- if (filename[0] != DIR_SEPARATOR && filename[0] != '<')
+ if (!IS_ABSOLUTE_PATH (filename) && filename[0] != '<')
add_comp_dir_attribute (die);
}
@@ -14188,7 +14200,7 @@ file_table_relative_p (void ** slot, void *param)
{
bool *p = param;
struct dwarf_file_data *d = *slot;
- if (d->emitted_number && d->filename[0] != DIR_SEPARATOR)
+ if (d->emitted_number && !IS_ABSOLUTE_PATH (d->filename))
{
*p = true;
return 0;
@@ -14208,7 +14220,7 @@ dwarf2out_finish (const char *filename)
/* Add the name for the main input file now. We delayed this from
dwarf2out_init to avoid complications with PCH. */
add_name_attribute (comp_unit_die, filename);
- if (filename[0] != DIR_SEPARATOR)
+ if (!IS_ABSOLUTE_PATH (filename))
add_comp_dir_attribute (comp_unit_die);
else if (get_AT (comp_unit_die, DW_AT_comp_dir) == NULL)
{