We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 581f358 commit e67122bCopy full SHA for e67122b
1 file changed
crates/core_arch/src/powerpc/vsx.rs
@@ -176,7 +176,10 @@ mod sealed {
176
#[inline]
177
#[target_feature(enable = "vsx")]
178
#[cfg_attr(test, assert_instr(xvadddp))]
179
- pub(crate) unsafe fn vec_add_double_double(a: vector_double, b: vector_double) -> vector_double {
+ pub(crate) unsafe fn vec_add_double_double(
180
+ a: vector_double,
181
+ b: vector_double,
182
+ ) -> vector_double {
183
simd_add(a, b)
184
}
185
0 commit comments