[PATCH] D96483: [flang][driver] Add options for unparsing

Andrzej Warzynski via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 11 09:33:10 PST 2021


awarzynski added inline comments.


================
Comment at: flang/tools/f18/f18.cpp:541
       driver.debugNoSemantics = true;
-    } else if (arg == "-funparse") {
+    } else if (arg == "-funparse" || arg == "-fdebug_unparse") {
       driver.dumpUnparse = true;
----------------
tskeith wrote:
> This should be "-fdebug-unparse" (with a hyphen). That may be why all those tests are failing.
Fixed, thank you!


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D96483/new/

https://reviews.llvm.org/D96483



More information about the cfe-commits mailing list