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 | 4306f139d75d3847ae8bdc6b12fff8ffeb4bc67e (patch) | |
tree | a5173250381e6f9e3c16199e83c04eb2290d2719 /lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | a41cb437ab6463ff322bd2b6433db47c833be9db (diff) | |
download | external_llvm-4306f139d75d3847ae8bdc6b12fff8ffeb4bc67e.zip external_llvm-4306f139d75d3847ae8bdc6b12fff8ffeb4bc67e.tar.gz external_llvm-4306f139d75d3847ae8bdc6b12fff8ffeb4bc67e.tar.bz2 |
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/LiveIntervalAnalysis.cpp')
-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 833cb95..baaed71 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()) |