diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-05-02 17:12:56 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-05-02 17:12:56 +0000 |
commit | bb7386aff58112a8d64a67afc2c7187d5da185b3 (patch) | |
tree | 2cd38c63f60a53220022971933c75ca73b60d387 /clang/lib/Analysis/GRExprEngine.cpp | |
parent | fa8f9f937a1207ba58fd8261bccceb616617b1e4 (diff) | |
download | bcm5719-llvm-bb7386aff58112a8d64a67afc2c7187d5da185b3.tar.gz bcm5719-llvm-bb7386aff58112a8d64a67afc2c7187d5da185b3.zip |
Really noreturn on exceptions.
llvm-svn: 50579
Diffstat (limited to 'clang/lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | clang/lib/Analysis/GRExprEngine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index 6d1a87a08de..e34d180283b 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/lib/Analysis/GRExprEngine.cpp @@ -1280,13 +1280,13 @@ void GRExprEngine::VisitObjCMessageExprDispatchHelper(ObjCMessageExpr* ME, unsigned idx = 0; // raise:format: - II.push_back(&Ctx.Idents.get("raise:")); - II.push_back(&Ctx.Idents.get("format:")); + II.push_back(&Ctx.Idents.get("raise")); + II.push_back(&Ctx.Idents.get("format")); NSExceptionInstanceRaiseSelectors[idx++] = Ctx.Selectors.getSelector(II.size(), &II[0]); // raise:format::arguments: - II.push_back(&Ctx.Idents.get("arguments:")); + II.push_back(&Ctx.Idents.get("arguments")); NSExceptionInstanceRaiseSelectors[idx++] = Ctx.Selectors.getSelector(II.size(), &II[0]); } |