Skip to content

Commit a92e3b6

Browse files
hkratzAmanieu
authored andcommitted
Disable arm inlining check again for now as some tests are still failing.
1 parent 1f6062d commit a92e3b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/stdarch-test/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ pub fn assert(shim_addr: usize, fnname: &str, expected: &str) {
103103
// failed inlining something.
104104
s[0].starts_with("call ") && s[1].starts_with("pop") // FIXME: original logic but does not match comment
105105
})
106-
} else if cfg!(target_arch = "aarch64") || cfg!(target_arch = "arm") {
106+
} else if cfg!(target_arch = "aarch64") {
107107
instrs.iter().any(|s| s.starts_with("bl "))
108108
} else {
109109
// FIXME: Add detection for other archs

0 commit comments

Comments
 (0)