From 67c0bfeae89e1e2331b6743d39c5a804e37c65e3 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 4 Dec 2013 23:55:09 +0000 Subject: [PATCH] Fix typo. llvm-svn: 196434 --- llvm/lib/Analysis/MemDepPrinter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Analysis/MemDepPrinter.cpp b/llvm/lib/Analysis/MemDepPrinter.cpp index d26aaf1b9048..d4f023589fc4 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) {