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