[PATCH] D111395: [flang][driver] Fix erroneous `&`
Andrzej Warzynski via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 8 07:46:01 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rGb41e86642e16: [flang][driver] Fix erroneous `&` (authored by awarzynski).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111395/new/
https://reviews.llvm.org/D111395
Files:
flang/lib/Frontend/FrontendActions.cpp
Index: flang/lib/Frontend/FrontendActions.cpp
===================================================================
--- flang/lib/Frontend/FrontendActions.cpp
+++ flang/lib/Frontend/FrontendActions.cpp
@@ -37,7 +37,7 @@
}
bool PrescanAndSemaAction::BeginSourceFileAction() {
- return RunPrescan() & RunParse() && RunSemanticChecks();
+ return RunPrescan() && RunParse() && RunSemanticChecks();
}
//===----------------------------------------------------------------------===//
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111395.378212.patch
Type: text/x-patch
Size: 485 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211008/71db270b/attachment.bin>
More information about the llvm-commits
mailing list