diff options
author | Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2013-11-24 14:43:20 +0000 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2013-11-24 14:43:20 +0000 |
commit | cc778c5ece1a75d7a60837115468ef6f1240f738 (patch) | |
tree | 58a326ad868bcadda67c3d8e545b4c6f8ea6bb35 /gcc/fortran/scanner.c | |
parent | 523c1561c9ca9cbf980ccb61ce198c70c866a104 (diff) | |
download | gcc-cc778c5ece1a75d7a60837115468ef6f1240f738.zip gcc-cc778c5ece1a75d7a60837115468ef6f1240f738.tar.gz gcc-cc778c5ece1a75d7a60837115468ef6f1240f738.tar.bz2 |
scanner.c (gfc_open_intrinsic_module): Remove function.
* scanner.c (gfc_open_intrinsic_module): Remove function.
* gfortran.h (gfc_open_intrinsic_module): Remove prototype.
From-SVN: r205335
Diffstat (limited to 'gcc/fortran/scanner.c')
-rw-r--r-- | gcc/fortran/scanner.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/fortran/scanner.c b/gcc/fortran/scanner.c index 882e2d5..e0650ba 100644 --- a/gcc/fortran/scanner.c +++ b/gcc/fortran/scanner.c @@ -465,24 +465,6 @@ gfc_open_included_file (const char *name, bool include_cwd, bool module) return f; } -FILE * -gfc_open_intrinsic_module (const char *name) -{ - FILE *f = NULL; - - if (IS_ABSOLUTE_PATH (name)) - { - f = gfc_open_file (name); - if (f && gfc_cpp_makedep ()) - gfc_cpp_add_dep (name, true); - } - - if (!f) - f = open_included_file (name, intrinsic_modules_dirs, true, true); - - return f; -} - /* Test to see if we're at the end of the main source file. */ |