[llvm] [clang-tools-extra] [clang] [VPlan] Consistently use (Part, 0) for first lane scalar values (PR #80271)

via cfe-commits cfe-commits at lists.llvm.org
Sun Feb 4 15:43:35 PST 2024


================
@@ -213,8 +213,13 @@ VPBasicBlock::iterator VPBasicBlock::getFirstNonPhi() {
 }
 
 Value *VPTransformState::get(VPValue *Def, const VPIteration &Instance) {
-  if (Def->isLiveIn())
-    return Def->getLiveInIRValue();
+  if (Def->isLiveIn()) {
+    if (Value *V = Def->getLiveInIRValue())
----------------
ayalz wrote:

A LiveIn Def must have a LiveInIRValue, is this `if` an assert?

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


More information about the cfe-commits mailing list