@@ -898,20 +898,19 @@ pub enum Rvalue {
898898 Cast ( CastKind , Operand , Ty ) ,
899899
900900 // FIXME link to `pointer::offset` when it hits stable.
901- /// * `Offset` has the same semantics as `pointer::offset`, except that the second
902- /// parameter may be a `usize` as well.
903- /// * The comparison operations accept `bool`s, `char`s, signed or unsigned integers, floats,
904- /// raw pointers, or function pointers and return a `bool`. The types of the operands must be
905- /// matching, up to the usual caveat of the lifetimes in function pointers.
906- /// * Left and right shift operations accept signed or unsigned integers not necessarily of the
907- /// same type and return a value of the same type as their LHS. Like in Rust, the RHS is
908- /// truncated as needed.
909- /// * The `Bit*` operations accept signed integers, unsigned integers, or bools with matching
910- /// types and return a value of that type.
911- /// * The remaining operations accept signed integers, unsigned integers, or floats with
912- /// matching types and return a value of that type.
901+ // // / * `Offset` has the same semantics as `pointer::offset`, except that the second
902+ // // / parameter may be a `usize` as well.
903+ // // / * The comparison operations accept `bool`s, `char`s, signed or unsigned integers, floats,
904+ // // / raw pointers, or function pointers and return a `bool`. The types of the operands must be
905+ // // / matching, up to the usual caveat of the lifetimes in function pointers.
906+ // // / * Left and right shift operations accept signed or unsigned integers not necessarily of the
907+ // // / same type and return a value of the same type as their LHS. Like in Rust, the RHS is
908+ // // / truncated as needed.
909+ // // / * The `Bit*` operations accept signed integers, unsigned integers, or bools with matching
910+ // // / types and return a value of that type.
911+ // // / * The remaining operations accept signed integers, unsigned integers, or floats with
912+ // // / matching types and return a value of that type.
913913 //BinaryOp(BinOp, Box<(Operand, Operand)>),
914-
915914 /// Same as `BinaryOp`, but yields `(T, bool)` with a `bool` indicating an error condition.
916915 ///
917916 /// When overflow checking is disabled and we are generating run-time code, the error condition
0 commit comments