From: OCHyams Date: Fri, 6 Jan 2023 10:58:12 +0000 (+0000) Subject: NFC Address review comment for D140905 X-Git-Tag: upstream/17.0.6~21930 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=48c68367d0320e0d6ec03bb9cf76a108f9202cad;p=platform%2Fupstream%2Fllvm.git NFC Address review comment for D140905 --- diff --git a/llvm/include/llvm/IR/IntrinsicInst.h b/llvm/include/llvm/IR/IntrinsicInst.h index 31049c8..3928b02 100644 --- a/llvm/include/llvm/IR/IntrinsicInst.h +++ b/llvm/include/llvm/IR/IntrinsicInst.h @@ -274,8 +274,8 @@ public: for (Value *OldValue : location_ops()) { if (!RemovedValues.insert(OldValue).second) continue; - Value *Undef = PoisonValue::get(OldValue->getType()); - replaceVariableLocationOp(OldValue, Undef); + Value *Poison = PoisonValue::get(OldValue->getType()); + replaceVariableLocationOp(OldValue, Poison); } }