mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-11 00:39:36 +00:00
Compile C strings to:
l1__2E_str_1: ; '.str_1' .asciz "foo" not: .align 0 l1__2E_str_1: ; '.str_1' .asciz "foo" git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24273 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2980cefb80
commit
2a21c6e861
@ -36,6 +36,7 @@ void AsmPrinter::setupMachineFunction(MachineFunction &MF) {
|
||||
|
||||
// emitAlignment - Emit an alignment directive to the specified power of two.
|
||||
void AsmPrinter::emitAlignment(unsigned NumBits) const {
|
||||
if (NumBits == 0) return; // No need to emit alignment.
|
||||
if (AlignmentIsInBytes) NumBits = 1 << NumBits;
|
||||
O << AlignDirective << NumBits << "\n";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user