mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 16:17:17 +00:00
Use utohex_buffer instead of utohexstr to avoid creating a temporary
string in the .ll and .s printers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58962 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -662,7 +662,8 @@ static void WriteConstantInt(raw_ostream &Out, const Constant *CV,
|
||||
// output the string in hexadecimal format!
|
||||
assert(sizeof(double) == sizeof(uint64_t) &&
|
||||
"assuming that double is 64 bits!");
|
||||
Out << "0x" << utohexstr(DoubleToBits(Val));
|
||||
char Buffer[40];
|
||||
Out << "0x" << utohex_buffer(uint64_t(DoubleToBits(Val)), Buffer+40);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user