diff options
author | John Criswell <criswell@uiuc.edu> | 2005-05-02 14:47:42 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2005-05-02 14:47:42 +0000 |
commit | fe3706a12be15634c8348f0584f2cd5a5ad3cd95 (patch) | |
tree | 6c5d998ae48862788c87583324861981f87203d5 /lib/Transforms/Utils/LowerInvoke.cpp | |
parent | 40c9e6be3e836f1e27c56f51ed796c081870832d (diff) |
Fixed a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21653 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LowerInvoke.cpp')
-rw-r--r-- | lib/Transforms/Utils/LowerInvoke.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/Utils/LowerInvoke.cpp b/lib/Transforms/Utils/LowerInvoke.cpp index 08249c65f7..fee18aa77c 100644 --- a/lib/Transforms/Utils/LowerInvoke.cpp +++ b/lib/Transforms/Utils/LowerInvoke.cpp @@ -18,9 +18,9 @@ // program will print a message then abort. // // 'Expensive' exception handling support gives the full exception handling -// support to the program at making the 'invoke' instruction really expensive. -// It basically inserts setjmp/longjmp calls to emulate the exception handling -// as necessary. +// support to the program at the cost of making the 'invoke' instruction +// really expensive. It basically inserts setjmp/longjmp calls to emulate the +// exception handling as necessary. // // Because the 'expensive' support slows down programs a lot, and EH is only // used for a subset of the programs, it must be specifically enabled by an |