summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorJulius Ikkala <julius.ikkala@gmail.com>2025-01-18 22:25:19 +0200
committerGitHub <noreply@github.com>2025-01-18 12:25:19 -0800
commitf3d7aa6ce964e3f8e2550886dae24ee6cba7ae9c (patch)
tree928e047c50b472bca6e2081098a2314a3ed4c0c9 /source
parentd09b6bccd5f06c1dd66dc28603a3defdd8615a12 (diff)
Fix upper 32 bits of 64-bit AnyValue packing (#6127)
Diffstat (limited to 'source')
-rw-r--r--source/slang/slang-ir-any-value-marshalling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-ir-any-value-marshalling.cpp b/source/slang/slang-ir-any-value-marshalling.cpp
index d1be60035..2dc91d299 100644
--- a/source/slang/slang-ir-any-value-marshalling.cpp
+++ b/source/slang/slang-ir-any-value-marshalling.cpp
@@ -426,7 +426,7 @@ struct AnyValueMarshallingContext
uintPtrType,
anyValueVar,
anyValInfo->fieldKeys[fieldOffset]);
- builder->emitStore(dstAddr, lowBits);
+ builder->emitStore(dstAddr, highBits);
fieldOffset++;
}
}