diff --git a/cranelift/codegen/meta/src/shared/instructions.rs b/cranelift/codegen/meta/src/shared/instructions.rs index 3ab1e0b1a5..4c7dbe5c72 100755 --- a/cranelift/codegen/meta/src/shared/instructions.rs +++ b/cranelift/codegen/meta/src/shared/instructions.rs @@ -3320,13 +3320,16 @@ pub(crate) fn define( ); } - let FloatTo = &TypeVar::new( - "FloatTo", - "A scalar or vector floating point number", - TypeSetBuilder::new() - .floats(Interval::All) - .simd_lanes(Interval::All) - .build(), + let FloatScalar = &TypeVar::new( + "FloatScalar", + "A scalar only floating point number", + TypeSetBuilder::new().floats(Interval::All).build(), + ); + + let FloatScalarTo = &TypeVar::new( + "FloatScalarTo", + "A scalar only floating point number", + TypeSetBuilder::new().floats(Interval::All).build(), ); ig.push( @@ -3346,8 +3349,8 @@ pub(crate) fn define( "#, &formats.unary, ) - .operands_in(vec![Operand::new("x", Float)]) - .operands_out(vec![Operand::new("a", FloatTo)]), + .operands_in(vec![Operand::new("x", FloatScalar)]) + .operands_out(vec![Operand::new("a", FloatScalarTo)]), ); ig.push( @@ -3367,8 +3370,8 @@ pub(crate) fn define( "#, &formats.unary, ) - .operands_in(vec![Operand::new("x", Float)]) - .operands_out(vec![Operand::new("a", FloatTo)]), + .operands_in(vec![Operand::new("x", FloatScalar)]) + .operands_out(vec![Operand::new("a", FloatScalarTo)]), ); let F64x2 = &TypeVar::new( @@ -3431,11 +3434,6 @@ pub(crate) fn define( .operands_out(vec![Operand::new("x", F64x2)]), ); - let FloatScalar = &TypeVar::new( - "FloatScalar", - "A scalar only floating point number", - TypeSetBuilder::new().floats(Interval::All).build(), - ); let IntTo = &TypeVar::new( "IntTo", "An scalar only integer type", @@ -3539,6 +3537,15 @@ pub(crate) fn define( .build(), ); + let FloatTo = &TypeVar::new( + "FloatTo", + "A scalar or vector floating point number", + TypeSetBuilder::new() + .floats(Interval::All) + .simd_lanes(Interval::All) + .build(), + ); + ig.push( Inst::new( "fcvt_from_uint",