forked from OSchip/llvm-project
[flang] Correct the argument keyword for AIMAG(Z=...)
It was X= in the intrinsics table. Differential Revision: https://reviews.llvm.org/D114296
This commit is contained in:
parent
e3dea5cf0e
commit
bb0d8e4bd9
|
@ -281,7 +281,7 @@ static const IntrinsicInterface genericIntrinsicFunction[]{
|
|||
{"acosh", {{"x", SameFloating}}, SameFloating},
|
||||
{"adjustl", {{"string", SameChar}}, SameChar},
|
||||
{"adjustr", {{"string", SameChar}}, SameChar},
|
||||
{"aimag", {{"x", SameComplex}}, SameReal},
|
||||
{"aimag", {{"z", SameComplex}}, SameReal},
|
||||
{"aint", {{"a", SameReal}, MatchingDefaultKIND}, KINDReal},
|
||||
{"all", {{"mask", SameLogical, Rank::array}, OptionalDIM}, SameLogical,
|
||||
Rank::dimReduced, IntrinsicClass::transformationalFunction},
|
||||
|
|
Loading…
Reference in New Issue