forked from OSchip/llvm-project
[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:
parent
58b357d1ce
commit
0f28575378
|
@ -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 >>
|
||||
|
|
Loading…
Reference in New Issue