From 0f418c7c8d410796b3862416c02d99d3a86181b7 Mon Sep 17 00:00:00 2001 From: peter klausler Date: Fri, 13 Apr 2018 13:56:49 -0700 Subject: [flang] Simplify proc-component-ref and variable parsing, do not try to support function calls via components of function results. Original-commit: flang-compiler/f18@05886ddb80e31f3caec96cbaba1fea274db7c61a Reviewed-on: https://github.com/flang-compiler/f18/pull/56 Tree-same-pre-rewrite: false --- flang/lib/parser/unparse.cc | 3 --- 1 file changed, 3 deletions(-) (limited to 'flang/lib/parser/unparse.cc') diff --git a/flang/lib/parser/unparse.cc b/flang/lib/parser/unparse.cc index c5a0fe2bc726..3699f584c307 100644 --- a/flang/lib/parser/unparse.cc +++ b/flang/lib/parser/unparse.cc @@ -803,9 +803,6 @@ public: void Unparse(const BoundsRemapping &x) { // R1036 Walk(x.t, ":"); } - void Unparse(const ProcComponentRef &x) { // R1039 - Walk(std::get>(x.t)), Put('%'), Walk(std::get(x.t)); - } void Unparse(const WhereStmt &x) { // R1041, R1045, R1046 Word("WHERE ("), Walk(x.t, ") "); } -- cgit v1.2.1