mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 02:56:06 +00:00
Rename statistic for instruction fragments -> relaxable
llvm-svn: 171872
This commit is contained in:
parent
3c352c0f4a
commit
0652dfd40c
@ -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…
x
Reference in New Issue
Block a user