mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Silence a warning from non-standard warning avoidance code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122911 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
762a17a040
commit
7008f1e9ab
@ -106,7 +106,8 @@ void PassRegistry::registerPass(const PassInfo &PI, bool ShouldFree) {
|
||||
PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl());
|
||||
bool Inserted =
|
||||
Impl->PassInfoMap.insert(std::make_pair(PI.getTypeInfo(),&PI)).second;
|
||||
assert(Inserted && "Pass registered multiple times!"); Inserted=Inserted;
|
||||
assert(Inserted && "Pass registered multiple times!");
|
||||
(void)Inserted;
|
||||
Impl->PassInfoStringMap[PI.getPassArgument()] = &PI;
|
||||
|
||||
// Notify any listeners.
|
||||
|
Loading…
x
Reference in New Issue
Block a user