[PATCH] D73632: [VE] (conditional) branch modification & isel patterns
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 29 08:35:11 PST 2020
arsenm accepted this revision.
arsenm added a comment.
This revision is now accepted and ready to land.
LGTM with nits
================
Comment at: llvm/lib/Target/VE/VEInstrInfo.cpp:42
+static bool IsIntegerCC(unsigned CC)
+{
+ return (CC < VECC::CC_AF);
----------------
Formatting
================
Comment at: llvm/lib/Target/VE/VEInstrInfo.cpp:148
+ return false;
+ } else {
+ SecondLastInst = &*I;
----------------
No else after return
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73632/new/
https://reviews.llvm.org/D73632
More information about the llvm-commits
mailing list