File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ use std::arch::x86_64::*;
1212#[ cfg( target_arch = "x86_64" ) ]
1313#[ target_feature( enable = "avx" ) ]
1414fn with_avx ( x : __m256 ) -> __m256 {
15- // CHECK: fadd
15+ // CHECK: fadd <8 x float>
1616 let add = {
1717 #[ inline( always) ]
1818 |x, y| unsafe { _mm256_add_ps ( x, y) }
@@ -24,14 +24,10 @@ fn with_avx(x: __m256) -> __m256 {
2424#[ no_mangle]
2525#[ cfg( target_arch = "x86_64" ) ]
2626unsafe fn without_avx ( x : __m256 ) -> __m256 {
27- // CHECK-NOT: fadd
27+ // CHECK-NOT: fadd <8 x float>
2828 let add = {
2929 #[ inline( always) ]
3030 |x, y| unsafe { _mm256_add_ps ( x, y) }
3131 } ;
3232 add ( x, x)
3333}
34-
35- // Don't allow the above CHECK-NOT to accidentally match a commit hash in the
36- // compiler version.
37- // CHECK-LABEL: rustc version
You can’t perform that action at this time.
0 commit comments