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 8029364 commit 5f9f874Copy full SHA for 5f9f874
src/tools/compiletest/src/util.rs
@@ -114,6 +114,8 @@ pub fn matches_env(triple: &str, name: &str) -> bool {
114
pub fn get_pointer_width(triple: &str) -> &'static str {
115
if (triple.contains("64") && !triple.ends_with("gnux32")) || triple.starts_with("s390x") {
116
"64bit"
117
+ } else if triple.starts_with("avr") {
118
+ "16bit"
119
} else {
120
"32bit"
121
}
0 commit comments