[PATCH] D108623: [flang] Fix non-deterministic line output function
Michael Kruse via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 24 09:34:39 PDT 2021
Meinersbur added inline comments.
================
Comment at: flang/lib/Semantics/check-declarations.cpp:1158
+ bool arg1Defined = CheckDefinedOperatorArg(opName, specific, proc, 1);
+ return (arg0Defined & arg1Defined);
+ };
----------------
With both argument having been evaluated, it is now possible to use the logical or (both arguments are bool).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D108623/new/
https://reviews.llvm.org/D108623
More information about the llvm-commits
mailing list