forked from OSchip/llvm-project
[JITLink] Fix a bad formatv format string.
llvm-svn: 358831
This commit is contained in:
parent
3474ba4f22
commit
7f77a231fa
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue