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>(
64
64
0 => FloatCC :: Equal ,
65
65
1 => FloatCC :: LessThan ,
66
66
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 ,
77
69
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 ,
84
72
kind => unreachable ! ( "kind {:?}" , kind) ,
85
73
} ;
86
74
You can’t perform that action at this time.
0 commit comments