mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 15:19:33 +00:00
Rename statistic for instruction fragments -> relaxable
llvm-svn: 171872
This commit is contained in:
parent
df0bfd2e95
commit
9b6b50b663
@ -34,8 +34,8 @@ using namespace llvm;
|
||||
namespace {
|
||||
namespace stats {
|
||||
STATISTIC(EmittedFragments, "Number of emitted assembler fragments - total");
|
||||
STATISTIC(EmittedInstFragments,
|
||||
"Number of emitted assembler fragments - instruction");
|
||||
STATISTIC(EmittedRelaxableFragments,
|
||||
"Number of emitted assembler fragments - relaxable");
|
||||
STATISTIC(EmittedDataFragments,
|
||||
"Number of emitted assembler fragments - data");
|
||||
STATISTIC(EmittedAlignFragments,
|
||||
@ -567,7 +567,7 @@ static void writeFragment(const MCAssembler &Asm, const MCAsmLayout &Layout,
|
||||
break;
|
||||
|
||||
case MCFragment::FT_Relaxable:
|
||||
++stats::EmittedInstFragments;
|
||||
++stats::EmittedRelaxableFragments;
|
||||
writeFragmentContents(F, OW);
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user