Use 'alignTo' instead of re-inventing it. NFC

llvm-svn: 264623
This commit is contained in:
Douglas Katzman 2016-03-28 19:23:23 +00:00
parent 1904598fff
commit 9825491bbd
1 changed files with 2 additions and 2 deletions

View File

@ -17,6 +17,7 @@
#include "llvm/Bitcode/BitCodes.h"
#include "llvm/Support/Endian.h"
#include "llvm/Support/MathExtras.h"
#include "llvm/Support/StreamingMemoryObject.h"
#include <climits>
#include <string>
@ -366,8 +367,7 @@ public:
assert(getCurrentByteNo() < Limit && "Move cursor before lowering limit");
// Round to word boundary.
if (Limit & (sizeof(word_t) - 1))
Limit += sizeof(word_t) - Limit & (sizeof(word_t) - 1);
Limit = alignTo(Limit, sizeof(word_t));
// Only change size if the new one is lower.
if (!Size || Size > Limit)