forked from OSchip/llvm-project
when verbose asm is on, print integers in ConstantDataSequentials just
like normal integers. llvm-svn: 149223
This commit is contained in:
parent
51ebe14a36
commit
829400bb22
|
@ -1626,6 +1626,9 @@ static void EmitGlobalConstantDataSequential(const ConstantDataSequential *CDS,
|
|||
unsigned ElementByteSize = CDS->getElementByteSize();
|
||||
if (isa<IntegerType>(CDS->getElementType())) {
|
||||
for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
|
||||
if (AP.isVerbose())
|
||||
AP.OutStreamer.GetCommentOS() << format("0x%" PRIx64 "\n",
|
||||
CDS->getElementAsInteger(i));
|
||||
AP.OutStreamer.EmitIntValue(CDS->getElementAsInteger(i),
|
||||
ElementByteSize, AddrSpace);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue