From afcfef147bebc697b574e032d2c99388f19d5152 Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Thu, 31 May 2012 17:21:27 +0000 Subject: [PATCH] Didn't mean to export this function. llvm-svn: 157756 --- llvm/utils/TableGen/RegisterInfoEmitter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/utils/TableGen/RegisterInfoEmitter.cpp b/llvm/utils/TableGen/RegisterInfoEmitter.cpp index b9e8a2e35e38..780ca398b363 100644 --- a/llvm/utils/TableGen/RegisterInfoEmitter.cpp +++ b/llvm/utils/TableGen/RegisterInfoEmitter.cpp @@ -468,6 +468,7 @@ typedef SmallVector 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 List) { assert(V.empty() && "Clear DiffVec before diffEncode."); uint16_t Val = uint16_t(InitVal);