[PATCH] D35681: [globalisel][tablegen] Fuse the generated tables together.

Daniel Sanders via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 20 06:19:03 PDT 2017


dsanders added inline comments.


================
Comment at: include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h:220
       if (!OM.isIntrinsicID() || OM.getIntrinsicID() != Value)
-        return false;
+        if (handleReject() == RejectAndGiveUp)
+          return false;
----------------
I intend to commit this line separately. It fixes a bug that was uncovered by this patch.


https://reviews.llvm.org/D35681





More information about the llvm-commits mailing list