[lli] Simplify the code a bit. No functional change intended.

llvm-svn: 286555
This commit is contained in:
Davide Italiano 2016-11-11 03:07:45 +00:00
parent 5e327343f1
commit 03a856807c
1 changed files with 1 additions and 3 deletions

View File

@ -161,9 +161,7 @@ uint32_t COFFObjectFile::getSymbolAlignment(DataRefImpl Ref) const {
// MSVC/link.exe seems to align symbols to the next-power-of-2
// up to 32 bytes.
COFFSymbolRef Symb = getCOFFSymbol(Ref);
uint32_t Value = Symb.getValue();
return std::min(uint64_t(32),
isPowerOf2_64(Value) ? Value : NextPowerOf2(Value));
return std::min(uint64_t(32), PowerOf2Ceil(Symb.getValue()));
}
Expected<uint64_t> COFFObjectFile::getSymbolAddress(DataRefImpl Ref) const {