[PATCH] D54147: [llvm-exegesis] Ignore X86 pseudo instructions.
Guillaume Chatelet via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 6 05:01:23 PST 2018
gchatelet added inline comments.
================
Comment at: tools/llvm-exegesis/lib/X86/Target.cpp:78
const auto OpcodeName = Instr.Name;
+ if ((Instr.Description->TSFlags & X86II::FormMask) == X86II::Pseudo) {
+ return llvm::make_error<BenchmarkFailure>(
----------------
Remove parenthesis
Repository:
rL LLVM
https://reviews.llvm.org/D54147
More information about the llvm-commits
mailing list