[flang] Fix recent regression on NAG tests found during pre-merge testing

Original-commit: flang-compiler/f18@1fc6d00ac8
Reviewed-on: https://github.com/flang-compiler/f18/pull/183
Tree-same-pre-rewrite: false
This commit is contained in:
peter klausler 2018-09-13 10:29:44 -07:00
parent 58b357d1ce
commit 0f28575378
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ namespace Fortran::parser {
// end-of-statement markers.
// R611 label -> digit [digit]...
constexpr auto label{space >> digitString / spaceCheck};
constexpr auto label{space >> digitString / !"_.edq"_ch};
template<typename PA> inline constexpr auto unterminatedStatement(const PA &p) {
return skipStuffBeforeStatement >>