diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-28 18:43:51 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-28 18:43:51 +0000 |
commit | 0471a79f2000eb1eb4458e7b3dcd254172fae739 (patch) | |
tree | a5173250381e6f9e3c16199e83c04eb2290d2719 /lib/CodeGen | |
parent | ca425a2a98d7d476ccbb585a7ec63ec452210001 (diff) |
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54136 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/LiveIntervalAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 833cb95eb9..baaed71d23 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -816,7 +816,7 @@ bool LiveIntervals::isReMaterializable(const LiveInterval &li, if (!EnableAggressiveRemat) return false; - // If the instruction access memory but the memoperands have been lost, + // If the instruction accesses memory but the memoperands have been lost, // we can't analyze it. const TargetInstrDesc &TID = MI->getDesc(); if ((TID.mayLoad() || TID.mayStore()) && MI->memoperands_empty()) |