File tree Expand file tree Collapse file tree 1 file changed +4
-16
lines changed Expand file tree Collapse file tree 1 file changed +4
-16
lines changed Original file line number Diff line number Diff line change @@ -64,23 +64,11 @@ pub(crate) fn codegen_llvm_intrinsic_call<'tcx>(
6464 0 => FloatCC :: Equal ,
6565 1 => FloatCC :: LessThan ,
6666 2 => FloatCC :: LessThanOrEqual ,
67- 7 => {
68- unimplemented ! (
69- "Compares corresponding elements in `a` and `b` to see if neither is `NaN`."
70- ) ;
71- }
72- 3 => {
73- unimplemented ! (
74- "Compares corresponding elements in `a` and `b` to see if either is `NaN`."
75- ) ;
76- }
67+ 7 => FloatCC :: Ordered ,
68+ 3 => FloatCC :: Unordered ,
7769 4 => FloatCC :: NotEqual ,
78- 5 => {
79- unimplemented ! ( "not less than" ) ;
80- }
81- 6 => {
82- unimplemented ! ( "not less than or equal" ) ;
83- }
70+ 5 => FloatCC :: UnorderedOrGreaterThanOrEqual ,
71+ 6 => FloatCC :: UnorderedOrGreaterThan ,
8472 kind => unreachable ! ( "kind {:?}" , kind) ,
8573 } ;
8674
You can’t perform that action at this time.
0 commit comments