mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Revert "Verify SIL modules at the beginning and at the end of the SIL optimization pipelines, if -sil-verify-all is provided"
This reverts commit r31863, which was committed by mistake. Swift SVN r31864
This commit is contained in:
@@ -232,8 +232,9 @@ public:
|
||||
/// \brief Create and return an empty SIL module that we can
|
||||
/// later parse SIL bodies directly into, without converting from an AST.
|
||||
static std::unique_ptr<SILModule> createEmptyModule(Module *M,
|
||||
SILOptions &Options) {
|
||||
return std::unique_ptr<SILModule>(new SILModule(M, Options, M, false));
|
||||
SILOptions &Options,
|
||||
bool WholeModule = false) {
|
||||
return std::unique_ptr<SILModule>(new SILModule(M, Options, M, WholeModule));
|
||||
}
|
||||
|
||||
/// Get the Swift module associated with this SIL module.
|
||||
|
||||
Reference in New Issue
Block a user