[llvm] r196434 - Fix typo.
Eric Christopher
echristo at gmail.com
Wed Dec 4 15:55:09 PST 2013
Author: echristo
Date: Wed Dec 4 17:55:09 2013
New Revision: 196434
URL: http://llvm.org/viewvc/llvm-project?rev=196434&view=rev
Log:
Fix typo.
Modified:
llvm/trunk/lib/Analysis/MemDepPrinter.cpp
Modified: llvm/trunk/lib/Analysis/MemDepPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/MemDepPrinter.cpp?rev=196434&r1=196433&r2=196434&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/MemDepPrinter.cpp (original)
+++ llvm/trunk/lib/Analysis/MemDepPrinter.cpp Wed Dec 4 17:55:09 2013
@@ -68,7 +68,7 @@ namespace {
return InstTypePair(dep.getInst(), Def);
if (dep.isNonFuncLocal())
return InstTypePair(dep.getInst(), NonFuncLocal);
- assert(dep.isUnknown() && "unexptected dependence type");
+ assert(dep.isUnknown() && "unexpected dependence type");
return InstTypePair(dep.getInst(), Unknown);
}
static InstTypePair getInstTypePair(const Instruction* inst, DepType type) {
More information about the llvm-commits
mailing list