String comparison cleanups.
Added test case.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50711 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index 040445b..4a20fbe 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -636,7 +636,7 @@
     if (s[0] == '\0')
       break;
   
-    if (s[0]!='W' || s[1]!='i' || s[2]!='t' || s[3]!='h')
+    if (!strncmp(s, "With", 4))
       break;
     
     return 0;