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 8b53cd1 commit f9cce82Copy full SHA for f9cce82
tests/src/bin/test_assembly.rs
@@ -53,6 +53,12 @@ fn read_assembly<P: AsRef<Path>>(path: P) -> io::Result<String> {
53
.to_str()
54
.unwrap();
55
let s = s.replace(workspace_dir, "$WORKSPACE");
56
+ // HACK: Replace Objective-C image info for simulator targets
57
+ let s = s.replace(
58
+ ".asciz\t\"\\000\\000\\000\\000`\\000\\000\"",
59
+ ".asciz\t\"\\000\\000\\000\\000@\\000\\000\"",
60
+ );
61
+ // Strip various uninteresting directives
62
let s = strip_lines(&s, ".cfi_");
63
let s = strip_lines(&s, ".macosx_version_");
64
let s = strip_lines(&s, ".ios_version_");
0 commit comments