aboutsummaryrefslogtreecommitdiff
path: root/lib/Rewrite/RewriteModernObjC.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2012-03-16 16:52:06 +0000
committerFariborz Jahanian <fjahanian@apple.com>2012-03-16 16:52:06 +0000
commit40539467ec19e6bc53d47ba650f42aa3f414a53f (patch)
treec222a8cafac8dcc2479910d2ce010ef7ab01f449 /lib/Rewrite/RewriteModernObjC.cpp
parent0961a01ebec0e31664bfe464bf4a0ac7b0891a1f (diff)
modern objective-c translator: writing @throw statement.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152931 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Rewrite/RewriteModernObjC.cpp')
-rw-r--r--lib/Rewrite/RewriteModernObjC.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Rewrite/RewriteModernObjC.cpp b/lib/Rewrite/RewriteModernObjC.cpp
index 1081b9df90..855031eb66 100644
--- a/lib/Rewrite/RewriteModernObjC.cpp
+++ b/lib/Rewrite/RewriteModernObjC.cpp
@@ -1939,8 +1939,8 @@ Stmt *RewriteModernObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) {
/* void objc_exception_throw(id) __attribute__((noreturn)); */
if (S->getThrowExpr())
buf = "objc_exception_throw(";
- else // add an implicit argument
- buf = "objc_exception_throw(_caught";
+ else
+ buf = "throw";
// handle "@ throw" correctly.
const char *wBuf = strchr(startBuf, 'w');
@@ -1950,7 +1950,8 @@ Stmt *RewriteModernObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) {
const char *semiBuf = strchr(startBuf, ';');
assert((*semiBuf == ';') && "@throw: can't find ';'");
SourceLocation semiLoc = startLoc.getLocWithOffset(semiBuf-startBuf);
- ReplaceText(semiLoc, 1, ");");
+ if (S->getThrowExpr())
+ ReplaceText(semiLoc, 1, ");");
return 0;
}