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 bf86ce2 commit f77ba2cCopy full SHA for f77ba2c
crates/intrinsic-test/src/arm/config.rs
@@ -9,6 +9,7 @@ std::ostream& operator<<(std::ostream& os, poly128_t value);
9
#endif
10
11
std::ostream& operator<<(std::ostream& os, float16_t value);
12
+std::ostream& operator<<(std::ostream& os, uint8_t value);
13
14
// T1 is the `To` type, T2 is the `From` type
15
template<typename T1, typename T2> T1 cast(T2 x) {
@@ -44,6 +45,11 @@ std::ostream& operator<<(std::ostream& os, float16_t value) {
44
45
os << ss.str();
46
return os;
47
}
48
+
49
+std::ostream& operator<<(std::ostream& os, uint8_t value) {
50
+ os << (unsigned int) value;
51
+ return os;
52
+}
53
"#;
54
55
// Format f16 values (and vectors containing them) in a way that is consistent with C.
0 commit comments