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

Tim Keith via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 11 08:09:16 PST 2021


tskeith 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;
----------------
This should be "-fdebug-unparse" (with a hyphen). That may be why all those tests are failing.


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