forked from OSchip/llvm-project
Print uint16_t numbers without a sign.
It seems I broke C++11. llvm-svn: 157711
This commit is contained in:
parent
f481ab3877
commit
04ed2e46a1
|
@ -480,7 +480,7 @@ DiffVec &diffEncode(DiffVec &V, unsigned InitVal, ArrayRef<unsigned> List) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static void printDiff16(raw_ostream &OS, uint16_t Val) {
|
static void printDiff16(raw_ostream &OS, uint16_t Val) {
|
||||||
OS << SignExtend32<16>(Val);
|
OS << Val;
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue