diff options
author | Eric Christopher <echristo@gmail.com> | 2013-12-04 23:55:09 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-12-04 23:55:09 +0000 |
commit | 67c0bfeae89e1e2331b6743d39c5a804e37c65e3 (patch) | |
tree | c4f0a09653b22624ebb98444e19b5c264d15a2e7 | |
parent | 6896e190cfe8313f34ee3f04743ae7be6be5b1bf (diff) | |
download | bcm5719-llvm-67c0bfeae89e1e2331b6743d39c5a804e37c65e3.tar.gz bcm5719-llvm-67c0bfeae89e1e2331b6743d39c5a804e37c65e3.zip |
Fix typo.
llvm-svn: 196434
-rw-r--r-- | llvm/lib/Analysis/MemDepPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/MemDepPrinter.cpp b/llvm/lib/Analysis/MemDepPrinter.cpp index d26aaf1b904..d4f023589fc 100644 --- a/llvm/lib/Analysis/MemDepPrinter.cpp +++ b/llvm/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) { |