[PATCH] D111308: [flang][driver] Add actions that execute despite semantic errors
    Mats Petersson via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Fri Oct  8 02:26:40 PDT 2021
    
    
  
MatsPetersson added inline comments.
================
Comment at: flang/lib/Frontend/FrontendActions.cpp:45
+  // Semantic checks are made to succeed unconditionally.
+  return RunPrescan() & RunParse() && (RunSemanticChecks() || true);
+}
----------------
Probably should fix the & to && in this one too, following the suggestion from FIR-Dev.
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D111308/new/
https://reviews.llvm.org/D111308
    
    
More information about the llvm-commits
mailing list