forked from OSchip/llvm-project
[flang] Improve commentary
Original-commit: flang-compiler/f18@364ac83bfc Reviewed-on: https://github.com/flang-compiler/f18/pull/862
This commit is contained in:
parent
40f0e01d2d
commit
828eed971b
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue