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/parse.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/parse.c')
-rw-r--r-- | gcc/fortran/parse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/parse.c b/gcc/fortran/parse.c index 1a47962..965e733 100644 --- a/gcc/fortran/parse.c +++ b/gcc/fortran/parse.c @@ -923,7 +923,7 @@ pop_state (void) /* Try to find the given state in the state stack. */ -try +gfc_try gfc_find_state (gfc_compile_state state) { gfc_state_data *p; @@ -1575,7 +1575,7 @@ typedef struct } st_state; -static try +static gfc_try verify_st_order (st_state *p, gfc_statement st) { @@ -3563,7 +3563,7 @@ add_global_program (void) /* Top level parser. */ -try +gfc_try gfc_parse_file (void) { int seen_program, errors_before, errors; |