add a note

llvm-svn: 32347
This commit is contained in:
Chris Lattner 2006-12-08 02:01:32 +00:00
parent e958559204
commit 4d475f6e6e
1 changed files with 10 additions and 0 deletions

View File

@ -303,6 +303,16 @@ unsigned int swap_32(unsigned int v) {
return v;
}
Nor is this (yes, it really is bswap):
unsigned long reverse(unsigned v) {
unsigned t;
t = v ^ ((v << 16) | (v >> 16));
t &= ~0xff0000;
v = (v << 24) | (v >> 8);
return v ^ (t >> 8);
}
//===---------------------------------------------------------------------===//
These should turn into single 16-bit (unaligned?) loads on little/big endian