Skip to content

Commit 67bd8cb

Browse files
authored
Merge pull request #11900 from github/alexdenisov/swift-ignore-lsregister
Swift: do not trace lsregister
2 parents 2942598 + 63b4e5e commit 67bd8cb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

swift/tools/tracing-config.lua

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,11 @@ function RegisterExtractorPack(id)
7878
invocation = {path = swiftExtractor, arguments = compilerArguments}
7979
}
8080
end
81-
return {SwiftMatcher}
81+
return {
82+
SwiftMatcher,
83+
CreatePatternMatcher({'^lsregister$'}, MatchCompilerName, nil,
84+
{trace = false}),
85+
}
8286
end
8387

8488
-- Return a list of minimum supported versions of the configuration file format

0 commit comments

Comments
 (0)