@@ -3,7 +3,7 @@ pub const NOTICE: &str = "\
33// test are derived from a JSON specification, published under the same license as the 
44// `intrinsic-test` crate.\n " ; 
55
6- pub  const  POLY128_OSTREAM_DECL :  & str  = r#" 
6+ pub  const  PLATFORM_C_FORWARD_DECLARATIONS :  & str  = r#" 
77#ifdef __aarch64__ 
88std::ostream& operator<<(std::ostream& os, poly128_t value); 
99#endif 
@@ -20,7 +20,7 @@ template<typename T1, typename T2> T1 cast(T2 x) {
2020} 
2121"# ; 
2222
23- pub  const  POLY128_OSTREAM_DEF :  & str  = r#" 
23+ pub  const  PLATFORM_C_DEFINITIONS :  & str  = r#" 
2424#ifdef __aarch64__ 
2525std::ostream& operator<<(std::ostream& os, poly128_t value) { 
2626    std::stringstream temp; 
@@ -53,7 +53,7 @@ std::ostream& operator<<(std::ostream& os, uint8_t value) {
5353"# ; 
5454
5555// Format f16 values (and vectors containing them) in a way that is consistent with C. 
56- pub  const  F16_FORMATTING_DEF :  & str  = r#" 
56+ pub  const  PLATFORM_RUST_DEFINITIONS :  & str  = r#" 
5757/// Used to continue `Debug`ging SIMD types as `MySimd(1, 2, 3, 4)`, as they 
5858/// were before moving to array-based simd. 
5959#[inline] 
@@ -139,7 +139,7 @@ impl DebugHexF16 for float16x8x4_t {
139139} 
140140 "# ; 
141141
142- pub  const  AARCH_CONFIGURATIONS :  & str  = r#" 
142+ pub  const  PLATFORM_RUST_CFGS :  & str  = r#" 
143143#![cfg_attr(target_arch = "arm", feature(stdarch_arm_neon_intrinsics))] 
144144#![cfg_attr(target_arch = "arm", feature(stdarch_aarch32_crc32))] 
145145#![cfg_attr(any(target_arch = "aarch64", target_arch = "arm64ec"), feature(stdarch_neon_fcma))] 
0 commit comments