1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Fix comment to reflect the new EH stuff.

llvm-svn: 141218
This commit is contained in:
Bill Wendling 2011-10-05 22:04:08 +00:00
parent 6791856e46
commit 79111c4a48

View File

@ -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);