Didn't mean to export this function.

llvm-svn: 157756
This commit is contained in:
Jakob Stoklund Olesen 2012-05-31 17:21:27 +00:00
parent 9bccb64e56
commit afcfef147b
1 changed files with 1 additions and 0 deletions

View File

@ -468,6 +468,7 @@ typedef SmallVector<uint16_t, 4> DiffVec;
// Differentially encode a sequence of numbers into V. The starting value and
// terminating 0 are not added to V, so it will have the same size as List.
static
DiffVec &diffEncode(DiffVec &V, unsigned InitVal, ArrayRef<unsigned> List) {
assert(V.empty() && "Clear DiffVec before diffEncode.");
uint16_t Val = uint16_t(InitVal);