[flang-commits] [flang] [Flang] Add parsing and attribute registration for SIMPLE procedures (PR #159763)
Peter Klausler via flang-commits
flang-commits at lists.llvm.org
Fri Sep 19 12:55:22 PDT 2025
================
@@ -2064,6 +2072,15 @@ bool IsPureProcedure(const Scope &scope) {
return symbol && IsPureProcedure(*symbol);
}
+bool IsSimpleProcedure(const Symbol &original) {
+ return original.attrs().test(Attr::SIMPLE);
+}
+
+bool IsimpleProcedure(const Scope &scope) {
----------------
klausler wrote:
Misspelling
https://github.com/llvm/llvm-project/pull/159763
More information about the flang-commits
mailing list