mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
Check for null MDNode element while printing comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83172 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bc9506f5ee
commit
4d7a2061f1
@ -874,7 +874,7 @@ static void WriteMDNodeComment(const MDNode *Node,
|
||||
formatted_raw_ostream &Out) {
|
||||
if (Node->getNumElements() < 1)
|
||||
return;
|
||||
ConstantInt *CI = dyn_cast<ConstantInt>(Node->getElement(0));
|
||||
ConstantInt *CI = dyn_cast_or_null<ConstantInt>(Node->getElement(0));
|
||||
if (!CI) return;
|
||||
unsigned Val = CI->getZExtValue();
|
||||
unsigned Tag = Val & ~LLVMDebugVersionMask;
|
||||
|
Loading…
x
Reference in New Issue
Block a user