Fix typo and correct comment somewhat.

llvm-svn: 100691
This commit is contained in:
Eric Christopher 2010-04-07 20:58:16 +00:00
parent 4e2f8722c4
commit 978d33a937
1 changed files with 1 additions and 1 deletions

View File

@ -599,7 +599,7 @@ void Filter::recurse() {
bit_value_t *BitVals = Owner->FilterBitValues; bit_value_t *BitVals = Owner->FilterBitValues;
for (unsigned i = 0; i < BIT_WIDTH; ++i) for (unsigned i = 0; i < BIT_WIDTH; ++i)
BitValueArray[i] = BitVals[i]; BitValueArray[i] = BitVals[i];
// FIXME: memcpy() is optmized out with self-hosting llvm-gcc (-O1 and -O2). // FIXME: memcpy() is misoptimized with self-hosting llvm-gcc (-O1 and -O2).
//memcpy(BitValueArray, Owner->FilterBitValues, sizeof(BitValueArray)); //memcpy(BitValueArray, Owner->FilterBitValues, sizeof(BitValueArray));
unsigned bitIndex; unsigned bitIndex;