mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Few targets like the tiny little PIC16 have only 16-bit pointers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62763 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
536ab130ec
commit
fcc6f1556e
@ -1516,6 +1516,10 @@ void AsmPrinter::printDataDirective(const Type *type) {
|
||||
assert(TAI->getData64bitsDirective() &&
|
||||
"Target cannot handle 64-bit pointer exprs!");
|
||||
O << TAI->getData64bitsDirective();
|
||||
} else if (TD->getPointerSize() == 2) {
|
||||
O << TAI->getData16bitsDirective();
|
||||
} else if (TD->getPointerSize() == 1) {
|
||||
O << TAI->getData8bitsDirective();
|
||||
} else {
|
||||
O << TAI->getData32bitsDirective();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user