mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 07:31:47 +00:00
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:
parent
6ab75b4dcb
commit
ff09e56cda
@ -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