1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Make helper function static.

llvm-svn: 162843
This commit is contained in:
Benjamin Kramer 2012-08-29 16:17:01 +00:00
parent b92d13cc42
commit 49d736fb29

View File

@ -532,7 +532,7 @@ uintptr_t X86JITInfo::getPICJumpTableEntry(uintptr_t BB, uintptr_t Entry) {
#endif
}
template<typename T> void addUnaligned(void *Pos, T Delta) {
template<typename T> static void addUnaligned(void *Pos, T Delta) {
T Value;
std::memcpy(reinterpret_cast<char*>(&Value), reinterpret_cast<char*>(Pos),
sizeof(T));