diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-07-11 00:57:02 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-07-11 00:57:02 +0000 |
commit | 818e96f5a42b2a9adea4ac0050340469b49d70ef (patch) | |
tree | 9b90383aa3ceb91d729146ad226dfcb35dc5f5f8 | |
parent | a0f71de52e827928eb9b84a40e9c8f69469a32ad (diff) |
Fix typo (found by gcc warning).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75325 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/CGObjCMac.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGObjCMac.cpp b/lib/CodeGen/CGObjCMac.cpp index 82ab88fa82..4677e1d754 100644 --- a/lib/CodeGen/CGObjCMac.cpp +++ b/lib/CodeGen/CGObjCMac.cpp @@ -2534,7 +2534,7 @@ void CGObjCMac::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF, // catch(id e) always matches. // FIXME: For the time being we also match id<X>; this should // be rejected by Sema instead. - if (OPT && (OPT->isObjCIdType()) || OPT->isObjCQualifiedIdType()) + if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType())) AllMatched = true; } |