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:
parent
c2eb5a6ee6
commit
cf597f5c30
@ -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;
|
||||
}
|
||||
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user