From: Dan Gohman Date: Mon, 28 Jul 2008 18:43:51 +0000 (+0000) Subject: Fix a typo in a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0471a79f2000eb1eb4458e7b3dcd254172fae739;p=oota-llvm.git Fix a typo in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54136 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 833cb95eb9f..baaed71d238 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())