[llvm] InlineSpiller: Delete assert that implicit_def has no implicit operands (PR #69087)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 19 08:50:53 PDT 2023


================
@@ -1071,8 +1071,7 @@ void InlineSpiller::insertReload(Register NewVReg,
 static bool isRealSpill(const MachineInstr &Def) {
   if (!Def.isImplicitDef())
     return true;
-  assert(Def.getNumOperands() == 1 &&
-         "Implicit def with more than one definition");
+
----------------
arsenm wrote:

The verifier handles that case 

https://github.com/llvm/llvm-project/pull/69087


More information about the llvm-commits mailing list