Skip to content

Commit

Permalink
removing dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
khushal1996 committed Apr 4, 2024
1 parent 2122f08 commit 8ad1be3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion src/coreclr/jit/assertionprop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ bool IntegralRange::Contains(int64_t value) const
{
case TYP_UBYTE:
case TYP_USHORT:
case TYP_UINT:
return SymbolicIntegerValue::Zero;
case TYP_BYTE:
return SymbolicIntegerValue::ByteMin;
Expand Down
12 changes: 0 additions & 12 deletions src/coreclr/jit/gentree.h
Original file line number Diff line number Diff line change
Expand Up @@ -556,8 +556,6 @@ enum GenTreeFlags : unsigned int
#if defined(TARGET_XARCH) && defined(FEATURE_HW_INTRINSICS)
GTF_HW_EM_OP = 0x10000000, // GT_HWINTRINSIC -- node is used as an operand to an embedded mask
#endif // TARGET_XARCH && FEATURE_HW_INTRINSICS

GTF_CONVERSION_SATURATED = 0x20000000, // GT_CAST -- conversion operation has saturation behavior
};

inline constexpr GenTreeFlags operator ~(GenTreeFlags a)
Expand Down Expand Up @@ -3891,16 +3889,6 @@ struct GenTreeCast : public GenTreeOp

return false;
}

bool IsSaturatedConversion()
{
return (gtFlags & GTF_CONVERSION_SATURATED) != 0;
}

void SetSaturatedConversion()
{
gtFlags |= GTF_CONVERSION_SATURATED;
}
};

// GT_BOX nodes are place markers for boxed values. The "real" tree
Expand Down

0 comments on commit 8ad1be3

Please sign in to comment.