summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-vm-bytecode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-vm-bytecode.cpp')
-rw-r--r--source/slang/slang-vm-bytecode.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/slang/slang-vm-bytecode.cpp b/source/slang/slang-vm-bytecode.cpp
index 1eafa4e57..bf16805b8 100644
--- a/source/slang/slang-vm-bytecode.cpp
+++ b/source/slang/slang-vm-bytecode.cpp
@@ -328,28 +328,28 @@ void printVMInst(StringBuilder& sb, VMModuleView* moduleView, VMInstHeader* inst
{
case OperandDataType::Int32:
{
- int32_t val;
+ int32_t val = 0;
moduleView->getConstant<int32_t>(operand, val);
sb << "i32(" << val << ")";
continue;
}
case OperandDataType::Int64:
{
- int64_t val;
+ int64_t val = 0;
moduleView->getConstant<int64_t>(operand, val);
sb << "i64(" << val << ")";
continue;
}
case OperandDataType::Float32:
{
- float val;
+ float val = 0.f;
moduleView->getConstant<float>(operand, val);
sb << "f32(" << val << ")";
continue;
}
case OperandDataType::Float64:
{
- double val;
+ double val = 0.0;
moduleView->getConstant<double>(operand, val);
sb << "f32(" << val << ")";
continue;