1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

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

llvm-svn: 165309
This commit is contained in:
NAKAMURA Takumi 2012-10-05 13:56:23 +00:00
parent 2ebde0e0fb
commit 4966e9a737

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;