mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Use EmitAlignment consistently
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54456 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2a166e9739
commit
fcd99bb428
@ -326,7 +326,7 @@ void IA64AsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
|
||||
assert(0 && "Unknown linkage type!");
|
||||
}
|
||||
|
||||
EmitAlignment(Align);
|
||||
EmitAlignment(Align, GVar);
|
||||
|
||||
if (TAI->hasDotTypeDotSizeDirective()) {
|
||||
O << "\t.type " << name << ",@object\n";
|
||||
|
@ -534,7 +534,7 @@ printModuleLevelGV(const GlobalVariable* GVar) {
|
||||
// Fall Through
|
||||
case GlobalValue::InternalLinkage:
|
||||
if (CVA && CVA->isCString())
|
||||
printSizeAndType = false;
|
||||
printSizeAndType = false;
|
||||
break;
|
||||
case GlobalValue::GhostLinkage:
|
||||
cerr << "Should not have any unmaterialized functions!\n";
|
||||
@ -549,8 +549,7 @@ printModuleLevelGV(const GlobalVariable* GVar) {
|
||||
assert(0 && "Unknown linkage type!");
|
||||
}
|
||||
|
||||
if (Align)
|
||||
O << "\t.align " << Align << '\n';
|
||||
EmitAlignment(Align, GVar);
|
||||
|
||||
if (TAI->hasDotTypeDotSizeDirective() && printSizeAndType) {
|
||||
O << "\t.type " << name << ",@object\n";
|
||||
|
@ -299,8 +299,7 @@ void SparcAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
|
||||
assert(0 && "Unknown linkage type!");
|
||||
}
|
||||
|
||||
if (Align)
|
||||
O << "\t.align " << Align << '\n';
|
||||
EmitAlignment(Align, GVar);
|
||||
|
||||
if (TAI->hasDotTypeDotSizeDirective()) {
|
||||
O << "\t.type " << name << ",#object\n";
|
||||
|
Loading…
x
Reference in New Issue
Block a user