aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.0/libcpp/files.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.4.0/libcpp/files.c')
-rw-r--r--gcc-4.4.0/libcpp/files.c25
1 files changed, 19 insertions, 6 deletions
diff --git a/gcc-4.4.0/libcpp/files.c b/gcc-4.4.0/libcpp/files.c
index 6ad83b934..93e343308 100644
--- a/gcc-4.4.0/libcpp/files.c
+++ b/gcc-4.4.0/libcpp/files.c
@@ -934,15 +934,28 @@ open_file_failed (cpp_reader *pfile, _cpp_file *file, int angle_brackets)
errno = file->err_no;
if (print_dep && CPP_OPTION (pfile, deps.missing_files) && errno == ENOENT)
- deps_add_dep (pfile->deps, file->name);
+ {
+ deps_add_dep (pfile->deps, file->name);
+ /* If the preprocessor output (other than dependency information) is
+ being used, we must also flag an error. */
+ if (CPP_OPTION (pfile, deps.need_preprocessor_output))
+ cpp_errno (pfile, CPP_DL_ERROR, file->path);
+ }
else
{
- /* If we are outputting dependencies but not for this file then
- don't error because we can still produce correct output. */
- if (CPP_OPTION (pfile, deps.style) && ! print_dep)
- cpp_errno (pfile, CPP_DL_WARNING, file->path);
- else
+ /* If we are not outputting dependencies, or if we are and dependencies
+ were requested for this file, or if preprocessor output is needed
+ in addition to dependency information, this is an error.
+
+ Otherwise (outputting dependencies but not for this file, and not
+ using the preprocessor output), we can still produce correct output
+ so it's only a warning. */
+ if (CPP_OPTION (pfile, deps.style) == DEPS_NONE
+ || print_dep
+ || CPP_OPTION (pfile, deps.need_preprocessor_output))
cpp_errno (pfile, CPP_DL_ERROR, file->path);
+ else
+ cpp_errno (pfile, CPP_DL_WARNING, file->path);
}
}