@@ -1628,7 +1628,7 @@ unsupported {} from `{}` with element `{}` of size `{}` to `{}`"#,
1628
1628
out_elem
1629
1629
) ;
1630
1630
}
1631
- macro_rules! arith_bin {
1631
+ macro_rules! arith_binary {
1632
1632
( $( $name: ident: $( $( $p: ident) ,* => $call: ident) ,* ; ) * ) => {
1633
1633
$( if name == sym:: $name {
1634
1634
match in_elem. kind( ) {
@@ -1644,7 +1644,7 @@ unsupported {} from `{}` with element `{}` of size `{}` to `{}`"#,
1644
1644
} ) *
1645
1645
}
1646
1646
}
1647
- arith_bin ! {
1647
+ arith_binary ! {
1648
1648
simd_add: Uint , Int => add, Float => fadd;
1649
1649
simd_sub: Uint , Int => sub, Float => fsub;
1650
1650
simd_mul: Uint , Int => mul, Float => fmul;
@@ -1659,7 +1659,7 @@ unsupported {} from `{}` with element `{}` of size `{}` to `{}`"#,
1659
1659
simd_fmin: Float => minnum;
1660
1660
1661
1661
}
1662
- macro_rules! arith_un {
1662
+ macro_rules! arith_unary {
1663
1663
( $( $name: ident: $( $( $p: ident) ,* => $call: ident) ,* ; ) * ) => {
1664
1664
$( if name == sym:: $name {
1665
1665
match in_elem. kind( ) {
@@ -1675,7 +1675,7 @@ unsupported {} from `{}` with element `{}` of size `{}` to `{}`"#,
1675
1675
} ) *
1676
1676
}
1677
1677
}
1678
- arith_un ! {
1678
+ arith_unary ! {
1679
1679
simd_neg: Int => neg, Float => fneg;
1680
1680
}
1681
1681
0 commit comments