[objc-arc-opts] Make IsTrackingImpreciseReleases a const method.

Thanks to Bill Wendling for pointing this out!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184593 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Michael Gottesman 2013-06-21 20:52:49 +00:00
parent a89594947e
commit 5b3d711240

View File

@ -542,7 +542,7 @@ namespace {
RRI.IsTailCallRelease = NewValue;
}
bool IsTrackingImpreciseReleases() {
bool IsTrackingImpreciseReleases() const {
return RRI.ReleaseMetadata != 0;
}