1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Print uint16_t numbers without a sign.

It seems I broke C++11.

llvm-svn: 157711
This commit is contained in:
Jakob Stoklund Olesen 2012-05-30 19:20:19 +00:00
parent c2eb5a6ee6
commit cf597f5c30

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;
}
//