aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SjLjEHPrepare.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-10-05 22:04:08 +0000
committerBill Wendling <isanbard@gmail.com>2011-10-05 22:04:08 +0000
commit2130ab0131ca0c0f5607937fe1f6ed48c28d39a2 (patch)
tree7abe78f8ba3c4eb727256d18ba2cc92330231c3b /lib/CodeGen/SjLjEHPrepare.cpp
parent6e39290baf236020f130d8695f7624004706bb08 (diff)
downloadexternal_llvm-2130ab0131ca0c0f5607937fe1f6ed48c28d39a2.zip
external_llvm-2130ab0131ca0c0f5607937fe1f6ed48c28d39a2.tar.gz
external_llvm-2130ab0131ca0c0f5607937fe1f6ed48c28d39a2.tar.bz2
Fix comment to reflect the new EH stuff.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141218 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SjLjEHPrepare.cpp')
-rw-r--r--lib/CodeGen/SjLjEHPrepare.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SjLjEHPrepare.cpp b/lib/CodeGen/SjLjEHPrepare.cpp
index 6b91935..e5ced3e 100644
--- a/lib/CodeGen/SjLjEHPrepare.cpp
+++ b/lib/CodeGen/SjLjEHPrepare.cpp
@@ -854,7 +854,7 @@ bool SjLjEHPass::setupEntryBlockAndCallSites(Function &F) {
CallInst::Create(FuncCtxFn, FuncCtxArg, "", EntryBB->getTerminator());
// At this point, we are all set up, update the invoke instructions to mark
- // their call_site values, and fill in the dispatch switch accordingly.
+ // their call_site values.
for (unsigned I = 0, E = Invokes.size(); I != E; ++I) {
insertCallSiteStore(Invokes[I], I + 1, CallSite);