Skip to content

Commit 3b52f3d

Browse files
committed
fixup: Restore an accidentally deleted line
1 parent ec8aa10 commit 3b52f3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Expression/IRInterpreter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -557,10 +557,10 @@ static bool CanResolveConstant(llvm::Constant *constant) {
557557
return false;
558558
case Value::ConstantIntVal:
559559
case Value::ConstantFPVal:
560-
case Value::ConstantDataVectorVal:
561-
return constant->getType()->getTypeID() == Type::FixedVectorTyID;
560+
return true;
562561
case Value::FunctionVal:
563562
return true;
563+
case Value::ConstantDataVectorVal:
564564
case Value::ConstantAggregateZeroVal:
565565
return constant->getType()->getTypeID() == Type::FixedVectorTyID;
566566
case Value::ConstantExprVal:

0 commit comments

Comments
 (0)