[flang] Improve commentary

Original-commit: flang-compiler/f18@364ac83bfc
Reviewed-on: https://github.com/flang-compiler/f18/pull/862
This commit is contained in:
peter klausler 2019-12-16 14:28:57 -08:00
parent 40f0e01d2d
commit 828eed971b
5 changed files with 15 additions and 1 deletions

View File

@ -28,7 +28,13 @@
// but that turned out to require more memory to compile with current
// C++ compilers than some people were willing to accept, so now the
// various per-type parsers are partitioned into several C++ source
// files.
// files. This file contains parsers for constants, types, declarations,
// and misfits (mostly clauses 7, 8, & 9 of Fortran 2018). The others:
// executable-parsers.cc Executable statements
// expr-parsers.cc Expressions
// io-parsers.cc I/O statements and FORMAT
// openmp-parsers.cc OpenMP directives
// program-parsers.cc Program units
#include "basic-parsers.h"
#include "expr-parsers.h"

View File

@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
// Per-type parsers for executable statements
#include "basic-parsers.h"
#include "characters.h"
#include "debug-parser.h"

View File

@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
// Per-type parsers for expressions.
#include "expr-parsers.h"
#include "basic-parsers.h"
#include "characters.h"

View File

@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
// Per-type parsers for I/O statements and FORMAT
#include "basic-parsers.h"
#include "characters.h"
#include "debug-parser.h"

View File

@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
// Per-type parsers for program units
#include "basic-parsers.h"
#include "characters.h"
#include "debug-parser.h"