File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -61,9 +61,6 @@ extern "platform-intrinsic" {
61
61
/// xor
62
62
pub ( crate ) fn simd_xor < T > ( x : T , y : T ) -> T ;
63
63
64
- /// getelementptr (without inbounds)
65
- pub ( crate ) fn simd_arith_offset < T , U > ( ptrs : T , offsets : U ) -> T ;
66
-
67
64
/// fptoui/fptosi/uitofp/sitofp
68
65
/// casting floats to integers is truncating, so it is safe to convert values like e.g. 1.5
69
66
/// but the truncated value must fit in the target type or the result is poison.
@@ -152,7 +149,8 @@ extern "platform-intrinsic" {
152
149
#[ allow( unused) ]
153
150
pub ( crate ) fn simd_select_bitmask < M , T > ( m : M , yes : T , no : T ) -> T ;
154
151
155
- // equivalent to wrapping_offset
152
+ /// getelementptr (without inbounds)
153
+ /// equivalent to wrapping_offset
156
154
pub ( crate ) fn simd_arith_offset < T , U > ( ptr : T , offset : U ) -> T ;
157
155
158
156
/*
You can’t perform that action at this time.
0 commit comments