Fix an apparent typo. `assert()` must not contain side-effects. NFC.
authorMichael Liao <michael.hliao@gmail.com>
Wed, 14 Oct 2020 15:26:52 +0000 (11:26 -0400)
committerMichael Liao <michael.hliao@gmail.com>
Wed, 14 Oct 2020 15:33:34 +0000 (11:33 -0400)
llvm/lib/CodeGen/StackMaps.cpp

index a5bad76..f7fb2e8 100644 (file)
@@ -384,7 +384,7 @@ void StackMaps::parseStatepointOpers(const MachineInstr &MI,
 
   // Record Deopt Args.
   unsigned NumDeoptArgs = Locations.back().Offset;
-  assert(Locations.back().Type = Location::Constant);
+  assert(Locations.back().Type == Location::Constant);
   assert(NumDeoptArgs == SO.getNumDeoptArgs());
 
   while (NumDeoptArgs--)