1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

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

Thanks to Bill Wendling for pointing this out!

llvm-svn: 184593
This commit is contained in:
Michael Gottesman 2013-06-21 20:52:49 +00:00
parent b7f5c9fc9b
commit 5eaa423430

View File

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