Skip to content

Commit 9ead5c1

Browse files
committed
Type: Clarify comment for isIEEELikeFPTy
1 parent b09551f commit 9ead5c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/include/llvm/IR/Type.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ class Type {
166166
bool isPPC_FP128Ty() const { return getTypeID() == PPC_FP128TyID; }
167167

168168
/// Return true if this is a well-behaved IEEE-like type, which has a IEEE
169-
/// compatible layout as defined by isIEEE(), and does not have unnormal
170-
/// values
169+
/// compatible layout as defined by APFloat::isIEEE(), and does not have
170+
/// non-IEEE values, such as x86_fp80's unnormal values.
171171
bool isIEEELikeFPTy() const {
172172
switch (getTypeID()) {
173173
case DoubleTyID:

0 commit comments

Comments
 (0)