[JITLink] Fix a bad formatv format string.

llvm-svn: 358831
This commit is contained in:
Lang Hames 2019-04-20 22:06:12 +00:00
parent 3474ba4f22
commit 7f77a231fa
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ private:
"Unsupported x86-64 relocation: kind=" + formatv("{0:x1}", RI.r_type) +
", pc_rel=" + (RI.r_pcrel ? "true" : "false") +
", extern= " + (RI.r_extern ? "true" : "false") +
", length=" + formatv("{0:u}", RI.r_length));
", length=" + formatv("{0:d}", RI.r_length));
}
Expected<Atom &> findAtomBySymbolIndex(const MachO::relocation_info &RI) {