change the function names in RelocationHelper to adhere to convention

llvm-svn: 173908
This commit is contained in:
Shankar Easwaran 2013-01-30 07:36:09 +00:00
parent c865abe747
commit 072031a265
1 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ namespace lld {
/// \brief Return the bits that are described by the mask
template < typename T >
T BitsGather(T val, T mask)
T gatherBits(T val, T mask)
{
T result = 0;
size_t off = 0;
@ -30,8 +30,9 @@ T BitsGather(T val, T mask)
return result;
}
/// \brief Set the bits as described by the mask
template <typename T>
T BitsScatter(T val, T mask)
T scatterBits(T val, T mask)
{
T result = 0;
size_t off = 0;