Print uint16_t numbers without a sign.

It seems I broke C++11.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157711 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jakob Stoklund Olesen 2012-05-30 19:20:19 +00:00
parent 6ab75b4dcb
commit ff09e56cda

View File

@ -480,7 +480,7 @@ DiffVec &diffEncode(DiffVec &V, unsigned InitVal, ArrayRef<unsigned> List) {
}
static void printDiff16(raw_ostream &OS, uint16_t Val) {
OS << SignExtend32<16>(Val);
OS << Val;
}
//