mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 07:35:39 +00:00
stdarch-test: Ignore {evex} prefix emitted by recent objdump
This commit is contained in:
parent
221eb88986
commit
acee6b804a
@ -148,7 +148,7 @@ fn parse(output: &str) -> HashSet<Function> {
|
||||
instruction
|
||||
.split_whitespace()
|
||||
.skip(1)
|
||||
.skip_while(|s| *s == "lock") // skip x86-specific prefix
|
||||
.skip_while(|s| *s == "lock" || *s == "{evex}") // skip x86-specific prefix
|
||||
.map(std::string::ToString::to_string)
|
||||
.collect::<Vec<String>>()
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user