SROA.cpp: Fix a warning, [-Wunused-variable]

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165309 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2012-10-05 13:56:23 +00:00
parent 7c0278e14e
commit 0559d31c37

View File

@ -710,6 +710,7 @@ private:
= MemTransferPartitionMap.insert(std::make_pair(&II, NewIdx)).second;
assert(Inserted &&
"Already have intrinsic in map but haven't seen both ends");
(void)Inserted;
}
return true;