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.
{evex}
1 parent c0244ce commit 622f50eCopy full SHA for 622f50e
crates/stdarch-test/src/disassembly.rs
@@ -148,7 +148,7 @@ fn parse(output: &str) -> HashSet<Function> {
148
instruction
149
.split_whitespace()
150
.skip(1)
151
- .skip_while(|s| *s == "lock") // skip x86-specific prefix
+ .skip_while(|s| *s == "lock" || *s == "{evex}") // skip x86-specific prefix
152
.map(std::string::ToString::to_string)
153
.collect::<Vec<String>>()
154
};
0 commit comments