diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-10-05 22:04:08 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-10-05 22:04:08 +0000 |
commit | db1633530a838896ca580d5fb97ba9c11a64c5e2 (patch) | |
tree | 7a397e7c13aec19eb508824bbf424c012cdd514b /llvm/lib/CodeGen/SjLjEHPrepare.cpp | |
parent | 6cc60e86686b61e8cb636b3f04105a4f508d6336 (diff) | |
download | bcm5719-llvm-db1633530a838896ca580d5fb97ba9c11a64c5e2.tar.gz bcm5719-llvm-db1633530a838896ca580d5fb97ba9c11a64c5e2.zip |
Fix comment to reflect the new EH stuff.
llvm-svn: 141218
Diffstat (limited to 'llvm/lib/CodeGen/SjLjEHPrepare.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SjLjEHPrepare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SjLjEHPrepare.cpp b/llvm/lib/CodeGen/SjLjEHPrepare.cpp index 6b91935969f..e5ced3e6ae5 100644 --- a/llvm/lib/CodeGen/SjLjEHPrepare.cpp +++ b/llvm/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); |