[PATCH] D128904: Bug fix "GC relocate is incorrectly tied to the statepoint"

Dmitry Bakunevich via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 4 03:03:33 PDT 2022


dbakunevich added a comment.

As part of this task, I could not use the

  isa<Type_1,Type_2>(Val)

construct, because there was an error when building llvm.
Throughout llvm, the construction

  isa<Type1>(Val) || isa<Type_2>(Val)

is often used. Therefore, I propose to solve the full transition problem with

  isa<>() || isa<>()

to

  isa<,>()

as a separate NFC patch


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

https://reviews.llvm.org/D128904



More information about the llvm-commits mailing list