mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
The patch to fix some issues in r174543 fixed the lines failing the test, but missed a couple
of lines which weren't being explicitly looked at and were printing incorrect results. These values clearly must lie within 32 bits, so the casts are definitely safe. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174717 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fb55a8fd7c
commit
0b821eff4c
@ -69,9 +69,9 @@ public:
|
||||
<< "\n";
|
||||
OS << format(" Version: %d\n", Version);
|
||||
OS << " Augmentation: \"" << Augmentation << "\"\n";
|
||||
OS << format(" Code alignment factor: %u\n", CodeAlignmentFactor);
|
||||
OS << format(" Data alignment factor: %d\n", DataAlignmentFactor);
|
||||
OS << format(" Return address column: %d\n", ReturnAddressRegister);
|
||||
OS << format(" Code alignment factor: %u\n", (uint32_t)CodeAlignmentFactor);
|
||||
OS << format(" Data alignment factor: %d\n", (int32_t)DataAlignmentFactor);
|
||||
OS << format(" Return address column: %d\n", (int32_t)ReturnAddressRegister);
|
||||
OS << "\n";
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user