]> granicus.if.org Git - clang/commitdiff
Remove unneeded radar reference.
authorTed Kremenek <kremenek@apple.com>
Fri, 20 Mar 2009 19:57:37 +0000 (19:57 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 20 Mar 2009 19:57:37 +0000 (19:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67394 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaExpr.cpp

index 705fe4dfeef3caecae1eb96c6dd274527b819d59..8d0c1eecee2f73b46f3672028f39f2549e3d8ae7 100644 (file)
@@ -3276,9 +3276,8 @@ QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
     // For non-floating point types, check for self-comparisons of the form
     // x == x, x != x, x < x, etc.  These always evaluate to a constant, and
     // often indicate logic errors in the program.
-    // NOTE: Per <rdar://problem/6703892>, don't warn about comparisons of enum
-    //  constants.  These can arise from macro expansions, and are usually quite
-    //  deliberate.
+    // NOTE: Don't warn about comparisons of enum constants. These can arise 
+    //  from macro expansions, and are usually quite deliberate.
     Expr *LHSStripped = lex->IgnoreParens();
     Expr *RHSStripped = rex->IgnoreParens();
     if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped))