diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2008-07-29 00:45:52 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2008-07-29 00:45:52 +0000 |
commit | 17b1d2a0498d7f5f56e626d3cdfa5e2627a0723e (patch) | |
tree | b8d1d37ff2f87a02075cf96d6a0b1ac5b3faff15 /gcc/fortran/scanner.c | |
parent | 4889854852f709c488acbedd5bec67517d4eebd7 (diff) | |
download | gcc-17b1d2a0498d7f5f56e626d3cdfa5e2627a0723e.zip gcc-17b1d2a0498d7f5f56e626d3cdfa5e2627a0723e.tar.gz gcc-17b1d2a0498d7f5f56e626d3cdfa5e2627a0723e.tar.bz2 |
gfortran.h (try): Remove macro.
* gfortran.h (try): Remove macro. Replace try with gfc_try
throughout.
* array.c: Likewise.
* check.c: Likewise.
* cpp.c: Likewise.
* cpp.h: Likewise.
* data.c: Likewise.
* data.h: Likewise.
* decl.c: Likewise.
* error.c: Likewise.
* expr.c: Likewise.
* interface.c: Likewise.
* intrinsic.c: Likewise.
* intrinsic.h: Likewise.
* io.c: Likewise.
* match.h: Likewise.
* parse.c: Likewise.
* parse.h: Likewise.
* resolve.c: Likewise.
* scanner.c: Likewise.
* simplify.c: Likewise.
* symbol.c: Likewise.
* trans-openmp.c: Likewise.
* trans-types.c: Likewise.
From-SVN: r138226
Diffstat (limited to 'gcc/fortran/scanner.c')
-rw-r--r-- | gcc/fortran/scanner.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/fortran/scanner.c b/gcc/fortran/scanner.c index c0becf0..8c702ca 100644 --- a/gcc/fortran/scanner.c +++ b/gcc/fortran/scanner.c @@ -1672,7 +1672,7 @@ preprocessor_line (gfc_char_t *c) } -static try load_file (const char *, const char *, bool); +static gfc_try load_file (const char *, const char *, bool); /* include_line()-- Checks a line buffer to see if it is an include line. If so, we call load_file() recursively to load the included @@ -1751,7 +1751,7 @@ include_line (gfc_char_t *line) /* Load a file into memory by calling load_line until the file ends. */ -static try +static gfc_try load_file (const char *realfilename, const char *displayedname, bool initial) { gfc_char_t *line; @@ -1921,10 +1921,10 @@ load_file (const char *realfilename, const char *displayedname, bool initial) it tries to determine the source form from the filename, defaulting to free form. */ -try +gfc_try gfc_new_file (void) { - try result; + gfc_try result; if (gfc_cpp_enabled ()) { |