Commits

Michael Gottesman committed ae248df628b
Some verify statements were wrapped in DEBUG() in PassManager.cpp that did not need to be. The reason why is the SILModule::verify is #ifndef NDEBUG out in no-assert builds. Thus the only thing these DEBUG() wrappers do is cause the user to need to pass in -Xllvm -debug-only=sil-passmanager to trigger the verifier. This also causes confusion for people not familiar with this property since they pass in -sil-verify-all and don't hit assertions in the verifier giving the mistaken impression that their code is verified when it is not. Swift SVN r16263