aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Bitcode
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2007-08-27 19:04:21 +0000
committerDavid Greene <greened@obbligato.org>2007-08-27 19:04:21 +0000
commit8278ef592ef0caf5cf0ccd8646fb7fdfbdc2e2d8 (patch)
tree22a84137e3fd97e2796d08dd07436bf2f4ff566c /lib/Bitcode
parentb2e7a6ba64fe6ef2c62668ef6d42b09671fc8804 (diff)
downloadexternal_llvm-8278ef592ef0caf5cf0ccd8646fb7fdfbdc2e2d8.zip
external_llvm-8278ef592ef0caf5cf0ccd8646fb7fdfbdc2e2d8.tar.gz
external_llvm-8278ef592ef0caf5cf0ccd8646fb7fdfbdc2e2d8.tar.bz2
Update InvokeInst to work like CallInst
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41506 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode')
-rw-r--r--lib/Bitcode/Reader/BitcodeReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp
index eb18e31..e1cd668 100644
--- a/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/lib/Bitcode/Reader/BitcodeReader.cpp
@@ -1400,7 +1400,7 @@ bool BitcodeReader::ParseFunctionBody(Function *F) {
}
}
- I = new InvokeInst(Callee, NormalBB, UnwindBB, &Ops[0], Ops.size());
+ I = new InvokeInst(Callee, NormalBB, UnwindBB, Ops.begin(), Ops.end());
cast<InvokeInst>(I)->setCallingConv(CCInfo);
break;
}