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 2c992fb384
commit 0b9a4cb3d7

View File

@ -599,7 +599,7 @@ void Filter::recurse() {
bit_value_t *BitVals = Owner->FilterBitValues;
for (unsigned i = 0; i < BIT_WIDTH; ++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));
unsigned bitIndex;