Skip to content

Commit 5568669

Browse files
authored
Merge pull request swiftlang#30095 from eeckstein/disable-mangler-verification
2 parents 8e79687 + 4845d81 commit 5568669

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lib/Basic/Mangler.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,15 @@ std::string Mangler::finalize() {
130130
Storage.clear();
131131

132132
#ifndef NDEBUG
133+
/*
134+
Verification is temporarily disabled, because of:
135+
rdar://problem/59813007
136+
rdar://problem/59496022
137+
https://bugs.swift.org/browse/SR-12204
138+
133139
if (StringRef(result).startswith(MANGLING_PREFIX_STR))
134140
verify(result);
141+
*/
135142
#endif
136143

137144
return result;

0 commit comments

Comments
 (0)