mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Don't use .quad to output double constants. The assembler must have a bug or
something, because the wrong bit patterns get output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16590 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a96879a26d
commit
6fdd9e1f35
@ -261,7 +261,8 @@ void V8Printer::emitGlobalConstant(const Constant *CV) {
|
||||
uint64_t UVal;
|
||||
} U;
|
||||
U.FVal = Val;
|
||||
O << ".quad\t" << U.UVal << "\t! double " << Val << "\n";
|
||||
O << ".word\t0x" << std::hex << (U.UVal >> 32) << std::dec << "\t! double " << Val << "\n";
|
||||
O << ".word\t0x" << std::hex << (U.UVal & 0xffffffffUL) << std::dec << "\t! double " << Val << "\n";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -261,7 +261,8 @@ void V8Printer::emitGlobalConstant(const Constant *CV) {
|
||||
uint64_t UVal;
|
||||
} U;
|
||||
U.FVal = Val;
|
||||
O << ".quad\t" << U.UVal << "\t! double " << Val << "\n";
|
||||
O << ".word\t0x" << std::hex << (U.UVal >> 32) << std::dec << "\t! double " << Val << "\n";
|
||||
O << ".word\t0x" << std::hex << (U.UVal & 0xffffffffUL) << std::dec << "\t! double " << Val << "\n";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user