Fix incorrect format string in debug output.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143768 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eli Friedman 2011-11-05 00:38:30 +00:00
Родитель ddaec0dba6
Коммит 8a5d0aedc1
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -18,6 +18,7 @@
#include "clang/Sema/SemaDiagnostic.h"
#include "llvm/Support/Format.h"
#include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Support/MathExtras.h"
#include "llvm/Support/CrashRecoveryContext.h"
@ -2161,7 +2162,7 @@ ASTContext::getObjCLayout(const ObjCInterfaceDecl *D,
static void PrintOffset(raw_ostream &OS,
CharUnits Offset, unsigned IndentLevel) {
OS << llvm::format("%4d | ", Offset.getQuantity());
OS << llvm::format("%4s | ", llvm::itostr(Offset.getQuantity()).c_str());
OS.indent(IndentLevel * 2);
}