mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
.string adds an implicit zero at the end. This is not what we wanted.
This fixes PR#44. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9252 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0b1fe84e81
commit
b169841166
@ -329,7 +329,7 @@ void Printer::printConstantValueOnly(const Constant *CV) {
|
||||
} else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
|
||||
if (isStringCompatible(CVA)) {
|
||||
// print the string alone and return
|
||||
O << "\t.string\t" << getAsCString(CVA) << "\n";
|
||||
O << "\t.ascii\t" << getAsCString(CVA) << "\n";
|
||||
} else { // Not a string. Print the values in successive locations
|
||||
const std::vector<Use> &constValues = CVA->getValues();
|
||||
for (unsigned i=0; i < constValues.size(); i++)
|
||||
|
@ -329,7 +329,7 @@ void Printer::printConstantValueOnly(const Constant *CV) {
|
||||
} else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
|
||||
if (isStringCompatible(CVA)) {
|
||||
// print the string alone and return
|
||||
O << "\t.string\t" << getAsCString(CVA) << "\n";
|
||||
O << "\t.ascii\t" << getAsCString(CVA) << "\n";
|
||||
} else { // Not a string. Print the values in successive locations
|
||||
const std::vector<Use> &constValues = CVA->getValues();
|
||||
for (unsigned i=0; i < constValues.size(); i++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user