mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	llvm-objdump: add missing % in format specifier.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215198 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
		| @@ -629,8 +629,8 @@ printMachOCompactUnwindSection(const MachOObjectFile *Obj, | |||||||
|   // Finally, we're ready to print the data we've gathered. |   // Finally, we're ready to print the data we've gathered. | ||||||
|   outs() << "Contents of __compact_unwind section:\n"; |   outs() << "Contents of __compact_unwind section:\n"; | ||||||
|   for (auto &Entry : CompactUnwinds) { |   for (auto &Entry : CompactUnwinds) { | ||||||
|     outs() << "  Entry at offset " << format("0x" PRIx32, Entry.OffsetInSection) |     outs() << "  Entry at offset " | ||||||
|            << ":\n"; |            << format("0x%" PRIx32, Entry.OffsetInSection) << ":\n"; | ||||||
|  |  | ||||||
|     // 1. Start of the region this entry applies to. |     // 1. Start of the region this entry applies to. | ||||||
|     outs() << "    start:                " |     outs() << "    start:                " | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user