Make some fixes for LiveInterval repair with debug info. Debug value
[oota-llvm.git] / lib / DebugInfo / DWARFDebugArangeSet.cpp
index b0c0354383b9c6614c4a377c7fda129dea0e7ca4..2efbfd1f92fb946ae5c2a9c96c0f40ff53683e26 100644 (file)
@@ -122,8 +122,9 @@ void DWARFDebugArangeSet::dump(raw_ostream &OS) const {
   const uint32_t hex_width = Header.AddrSize * 2;
   for (DescriptorConstIter pos = ArangeDescriptors.begin(),
        end = ArangeDescriptors.end(); pos != end; ++pos)
-    OS << format("[0x%*.*llx -", hex_width, hex_width, pos->Address)
-       << format(" 0x%*.*llx)\n", hex_width, hex_width, pos->getEndAddress());
+    OS << format("[0x%*.*" PRIx64 " -", hex_width, hex_width, pos->Address)
+       << format(" 0x%*.*" PRIx64 ")\n",
+                 hex_width, hex_width, pos->getEndAddress());
 }