Skip to content

Commit 622f50e

Browse files
committed
stdarch-test: Ignore {evex} prefix emitted by recent objdump
1 parent c0244ce commit 622f50e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/stdarch-test/src/disassembly.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ fn parse(output: &str) -> HashSet<Function> {
148148
instruction
149149
.split_whitespace()
150150
.skip(1)
151-
.skip_while(|s| *s == "lock") // skip x86-specific prefix
151+
.skip_while(|s| *s == "lock" || *s == "{evex}") // skip x86-specific prefix
152152
.map(std::string::ToString::to_string)
153153
.collect::<Vec<String>>()
154154
};

0 commit comments

Comments
 (0)