[PATCH] D81219: [VE] Support logical operation instructions in MC layer
Kazushi Marukawa via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 5 02:42:37 PDT 2020
kaz7 marked an inline comment as done.
kaz7 added inline comments.
================
Comment at: llvm/lib/Target/VE/AsmParser/VEAsmParser.cpp:694
+ Name.startswith("cmov.d.") || Name.startswith("cmov.s.")) {
+ bool ICC = Name[5] == 'l' || Name[5] == 'w' ? true : false;
+ Mnemonic = parseCC(Name, 7, Name.size(), ICC, false, NameLoc, Operands);
----------------
simoll wrote:
> Redundant `?:`
Will modify it. Thanks!
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D81219/new/
https://reviews.llvm.org/D81219
More information about the llvm-commits
mailing list