mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Change JIT for different layout of fp80.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67629 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e1c5267aec
commit
e330ae5b32
@ -752,11 +752,11 @@ void ExecutionEngine::StoreValueToMemory(const GenericValue &Val,
|
||||
uint16_t *Dest = (uint16_t*)Ptr;
|
||||
const uint16_t *Src = (uint16_t*)Val.IntVal.getRawData();
|
||||
// This is endian dependent, but it will only work on x86 anyway.
|
||||
Dest[0] = Src[4];
|
||||
Dest[1] = Src[0];
|
||||
Dest[2] = Src[1];
|
||||
Dest[3] = Src[2];
|
||||
Dest[4] = Src[3];
|
||||
Dest[0] = Src[0];
|
||||
Dest[1] = Src[1];
|
||||
Dest[2] = Src[2];
|
||||
Dest[3] = Src[3];
|
||||
Dest[4] = Src[4];
|
||||
break;
|
||||
}
|
||||
case Type::PointerTyID:
|
||||
|
Loading…
x
Reference in New Issue
Block a user