[PATCH] D92758: [VE] Add vfmk intrinsic instructions

Simon Moll via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 9 05:45:42 PST 2020


simoll accepted this revision.
simoll added a comment.
This revision is now accepted and ready to land.

Thanks! One nit, else good to go.



================
Comment at: llvm/lib/Target/VE/VEInstrInfo.cpp:784
+
+  if (VFMKMap.find(Opcode) == VFMKMap.end())
+    report_fatal_error("unexpected opcode for pseudo vfmk");
----------------
Nitpick: you can store the iterator here and use it to access `first` and `second` below. 


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D92758/new/

https://reviews.llvm.org/D92758



More information about the llvm-commits mailing list