Skip to content

Commit 51c353b

Browse files
committed
Fix
Created using spr 1.3.6-beta.1
1 parent a780d18 commit 51c353b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Bitcode/Reader/BitcodeReader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,7 +1613,7 @@ Expected<Value *> BitcodeReader::materializeValue(unsigned StartValID,
16131613
ConstOps.size() > 4 ? ConstOps[4]
16141614
: ConstantPointerNull::get(cast<PointerType>(
16151615
ConstOps[3]->getType()));
1616-
if (DeactivationSymbol->getType()->isPointerTy())
1616+
if (!DeactivationSymbol->getType()->isPointerTy())
16171617
return error(
16181618
"ptrauth deactivation symbol operand must be a pointer");
16191619

0 commit comments

Comments
 (0)