mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fix PR#226: When emitting padding, always emit it as bytes. Bytes can be
placed into any alignment situation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11247 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
56e670557f
commit
ccb2a677af
@ -184,14 +184,11 @@ namespace {
|
||||
}
|
||||
|
||||
void PrintZeroBytesToPad(int numBytes) {
|
||||
for (/* no init */; numBytes >= 8; numBytes -= 8)
|
||||
printSingleConstantValue(Constant::getNullValue(Type::ULongTy));
|
||||
|
||||
if (numBytes >= 4) {
|
||||
printSingleConstantValue(Constant::getNullValue(Type::UIntTy));
|
||||
numBytes -= 4;
|
||||
}
|
||||
|
||||
//
|
||||
// Always use single unsigned bytes for padding. We don't know upon
|
||||
// what data size the beginning address is aligned, so using anything
|
||||
// other than a byte may cause alignment errors in the assembler.
|
||||
//
|
||||
while (numBytes--)
|
||||
printSingleConstantValue(Constant::getNullValue(Type::UByteTy));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user