[flang][NFC] rename isAbsent to isStaticallyAbsent in IntrinsicCall.cpp
authorJean Perier <jperier@nvidia.com>
Fri, 8 Apr 2022 11:49:13 +0000 (13:49 +0200)
committerJean Perier <jperier@nvidia.com>
Fri, 8 Apr 2022 11:49:30 +0000 (13:49 +0200)
commitf1cfa461f28ed5bf77ca2e8f26cbf66fa09481a0
tree287758f7b3321e9ead858a463b884fb3cde67780
parent18106b99f0c3076220e86123d1c19e0d38683b60
[flang][NFC] rename isAbsent to isStaticallyAbsent in IntrinsicCall.cpp

isAbsent/isPresent helpers only give information about static presence
of intrinsic arguments. Many intrinsic arguments optionality is dynamic
(an absent dummy can legally be passed to these intrinsics). This
requires a different handling (like `handleDynamicOptional`).

Rename the helpers to avoid misleading coder/reader into thinking all
optionality cases are covered by them.

Differential Revision: https://reviews.llvm.org/D123378
flang/lib/Lower/IntrinsicCall.cpp