Skip to content

Commit bae561b

Browse files
committed
attempt to minimize future conflicts
1 parent 87b1189 commit bae561b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/ui/simd/intrinsic/float-math-pass.rs

+9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ struct f32x4(pub [f32; 4]);
1717

1818
use std::intrinsics::simd::*;
1919

20+
<<<<<<< HEAD
21+
=======
22+
#[rustc_intrinsic]
23+
unsafe fn simd_fpow<T>(x: T, y: T) -> T;
24+
25+
#[rustc_intrinsic]
26+
unsafe fn simd_fpowi<T>(x: T, y: i32) -> T;
27+
28+
>>>>>>> f48829bd978 (attempt to minimize future conflicts)
2029
macro_rules! assert_approx_eq_f32 {
2130
($a:expr, $b:expr) => {{
2231
let (a, b) = (&$a, &$b);

0 commit comments

Comments
 (0)