Remove minnum/maxnum.

This commit is contained in:
Dan Gohman
2017-10-18 14:39:21 -07:00
parent a57a05cb92
commit 55bc368bf8
2 changed files with 3 additions and 23 deletions

View File

@@ -1383,15 +1383,6 @@ fmin = Instruction(
""",
ins=(x, y), outs=a)
fminnum = Instruction(
'fminnum', r"""
Floating point minimum, suppressing quiet NaNs.
If either operand is a quiet NaN, the other operand is returned. If
either operand is a signaling NaN, NaN is returned.
""",
ins=(x, y), outs=a)
a = Operand('a', Float, 'The larger of ``x`` and ``y``')
fmax = Instruction(
@@ -1402,15 +1393,6 @@ fmax = Instruction(
""",
ins=(x, y), outs=a)
fmaxnum = Instruction(
'fmaxnum', r"""
Floating point maximum, suppressing quiet NaNs.
If either operand is a quiet NaN, the other operand is returned. If
either operand is a signaling NaN, NaN is returned.
""",
ins=(x, y), outs=a)
a = Operand('a', Float, '``x`` rounded to integral value')
ceil = Instruction(