1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Move a couple more statistics inside '#ifndef NDEBUG'.

Suppresses an unused-variable warning in -Asserts builds.

llvm-svn: 181733
This commit is contained in:
Matt Beaumont-Gay 2013-05-13 21:10:49 +00:00
parent c0737806ad
commit 943ebcd46c

View File

@ -303,11 +303,11 @@ STATISTIC(NumRets, "Number of return value forwarding "
"retain+autoreleaes eliminated");
STATISTIC(NumRRs, "Number of retain+release paths eliminated");
STATISTIC(NumPeeps, "Number of calls peephole-optimized");
#ifndef NDEBUG
STATISTIC(NumRetainsBeforeOpt,
"Number of retains before optimization.");
STATISTIC(NumReleasesBeforeOpt,
"Number of releases before optimization.");
#ifndef NDEBUG
STATISTIC(NumRetainsAfterOpt,
"Number of retains after optimization.");
STATISTIC(NumReleasesAfterOpt,