summaryrefslogtreecommitdiff
path: root/lib/Analysis
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-12-04 23:55:09 +0000
committerEric Christopher <echristo@gmail.com>2013-12-04 23:55:09 +0000
commit1cf9e7ff966f3adffdb7b0804a264dca5dc876fa (patch)
treec83ca4feb7f7bc7302e4e0fdec7eb7d06216e32f /lib/Analysis
parent81a14a80f3e214003773365be80c88b97321e5ef (diff)
downloadllvm-1cf9e7ff966f3adffdb7b0804a264dca5dc876fa.tar.gz
llvm-1cf9e7ff966f3adffdb7b0804a264dca5dc876fa.tar.bz2
llvm-1cf9e7ff966f3adffdb7b0804a264dca5dc876fa.tar.xz
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196434 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/MemDepPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/MemDepPrinter.cpp b/lib/Analysis/MemDepPrinter.cpp
index d26aaf1b90..d4f023589f 100644
--- a/lib/Analysis/MemDepPrinter.cpp
+++ b/lib/Analysis/MemDepPrinter.cpp
@@ -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) {