Change a whole lot of diagnostics to take QualType's directly 
instead of converting them to strings first.  This also fixes a
bunch of minor inconsistencies in the diagnostics emitted by clang
and adds a bunch of FIXME's to DiagnosticKinds.def.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59948 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaObjC/foreach-1.m b/test/SemaObjC/foreach-1.m
index 17c0379..9de3294 100644
--- a/test/SemaObjC/foreach-1.m
+++ b/test/SemaObjC/foreach-1.m
@@ -4,7 +4,7 @@
 
 void f(NSArray *a)
 {
-    for (int i in a); // expected-error{{selector element type ('int') is not a valid object}}
+    for (int i in a); // expected-error{{selector element type 'int' is not a valid object}}
     for ((id)2 in a); // expected-error{{selector element is not a valid lvalue}}
     for (2 in a); // expected-error{{selector element is not a valid lvalue}}
-}
\ No newline at end of file
+}