diff options
| author | Mark Rowe <mark@vector35.com> | 2026-06-04 13:06:57 -0700 |
|---|---|---|
| committer | Mark Rowe <mark@vector35.com> | 2026-06-05 12:53:05 -0700 |
| commit | fa09f36b5f47ed690dc029fe9f1ed9ad4ebce7c8 (patch) | |
| tree | 0a49ada4b17c7209f2e6c05d32100b36d8d30e1a | |
| parent | e456f10c9e0a35cfdd39aeaecb85c4e02f0e60f5 (diff) | |
[aarch64] Fix incorrect lifting of double precision FMOV immediate
| -rw-r--r-- | arch/arm64/il.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/il.cpp b/arch/arm64/il.cpp index 734e06d6..2cac5f04 100644 --- a/arch/arm64/il.cpp +++ b/arch/arm64/il.cpp @@ -176,7 +176,7 @@ static ExprId GetFloat(LowLevelILFunction& il, InstructionOperand& operand, int case 4: return il.FloatConstSingle(std::bit_cast<float>(static_cast<uint32_t>(operand.immediate))); case 8: - return il.FloatConstDouble(std::bit_cast<double>(operand.immediate)); + return il.FloatConstDouble(std::bit_cast<float>(static_cast<uint32_t>(operand.immediate))); default: break; } |
