[flang-commits] [PATCH] D122438: [flang] Mark C_ASSOCIATED specific procedures as PURE
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Fri Mar 25 15:04:39 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG5c116d50e42f: [flang] Mark C_ASSOCIATED specific procedures as PURE (authored by klausler).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D122438/new/
https://reviews.llvm.org/D122438
Files:
flang/module/iso_c_binding.f90
Index: flang/module/iso_c_binding.f90
===================================================================
--- flang/module/iso_c_binding.f90
+++ flang/module/iso_c_binding.f90
@@ -90,7 +90,7 @@
contains
- logical function c_associated_c_ptr(c_ptr_1, c_ptr_2)
+ pure logical function c_associated_c_ptr(c_ptr_1, c_ptr_2)
type(c_ptr), intent(in) :: c_ptr_1
type(c_ptr), intent(in), optional :: c_ptr_2
if (c_ptr_1%__address == c_null_ptr%__address) then
@@ -102,7 +102,7 @@
end if
end function c_associated_c_ptr
- logical function c_associated_c_funptr(c_funptr_1, c_funptr_2)
+ pure logical function c_associated_c_funptr(c_funptr_1, c_funptr_2)
type(c_funptr), intent(in) :: c_funptr_1
type(c_funptr), intent(in), optional :: c_funptr_2
if (c_funptr_1%__address == c_null_ptr%__address) then
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122438.418335.patch
Type: text/x-patch
Size: 843 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20220325/14edf404/attachment.bin>
More information about the flang-commits
mailing list