aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2010-03-23 13:45:54 +0000
committerGabor Greif <ggreif@gmail.com>2010-03-23 13:45:54 +0000
commit050560e535fe10b59ba608f19b43cfecd02c75b7 (patch)
treea90837eb498820ad1b976dccad614d9fd2e66335
parentc289a0252bba42248d7b11699dda27feca8860b6 (diff)
downloadexternal_llvm-050560e535fe10b59ba608f19b43cfecd02c75b7.zip
external_llvm-050560e535fe10b59ba608f19b43cfecd02c75b7.tar.gz
external_llvm-050560e535fe10b59ba608f19b43cfecd02c75b7.tar.bz2
word-o
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99275 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/Instructions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp
index 8f4763f..ba749bc 100644
--- a/lib/VMCore/Instructions.cpp
+++ b/lib/VMCore/Instructions.cpp
@@ -621,7 +621,7 @@ void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
assert(((NumArgs == FTy->getNumParams()) ||
(FTy->isVarArg() && NumArgs > FTy->getNumParams())) &&
- "Calling a function with bad signature");
+ "Invoking a function with bad signature");
for (unsigned i = 0, e = NumArgs; i != e; i++) {
assert((i >= FTy->getNumParams() ||