Fix spelling. NFC.

llvm-svn: 329709
This commit is contained in:
Chad Rosier 2018-04-10 14:57:13 +00:00
parent 821f650bba
commit af7519e9af
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
/// that may inhibit the HW prefetching. This is done in two steps. Before
/// ISel, we mark strided loads (i.e. those that will likely benefit from
/// prefetching) with metadata. Then, after opcodes have been finalized, we
/// insert MOVs and re-write loads to prevent unintnentional tag collisions.
/// insert MOVs and re-write loads to prevent unintentional tag collisions.
// ===---------------------------------------------------------------------===//
#include "AArch64.h"
@ -59,7 +59,7 @@ STATISTIC(NumStridedLoadsMarked, "Number of strided loads marked");
STATISTIC(NumCollisionsAvoided,
"Number of HW prefetch tag collisions avoided");
STATISTIC(NumCollisionsNotAvoided,
"Number of HW prefetch tag collisions not avoided due to lack of regsiters");
"Number of HW prefetch tag collisions not avoided due to lack of registers");
namespace {