move {'s


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69179 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Basic/Diagnostic.cpp b/lib/Basic/Diagnostic.cpp
index cf0717a..2704135 100644
--- a/lib/Basic/Diagnostic.cpp
+++ b/lib/Basic/Diagnostic.cpp
@@ -489,8 +489,7 @@
 
 
 /// PluralNumber - Parse an unsigned integer and advance Start.
-static unsigned PluralNumber(const char *&Start, const char *End)
-{
+static unsigned PluralNumber(const char *&Start, const char *End) {
   // Programming 101: Parse a decimal number :-)
   unsigned Val = 0;
   while (Start != End && *Start >= '0' && *Start <= '9') {
@@ -502,8 +501,7 @@
 }
 
 /// TestPluralRange - Test if Val is in the parsed range. Modifies Start.
-static bool TestPluralRange(unsigned Val, const char *&Start, const char *End)
-{
+static bool TestPluralRange(unsigned Val, const char *&Start, const char *End) {
   if (*Start != '[') {
     unsigned Ref = PluralNumber(Start, End);
     return Ref == Val;
@@ -520,8 +518,7 @@
 }
 
 /// EvalPluralExpr - Actual expression evaluator for HandlePluralModifier.
-static bool EvalPluralExpr(unsigned ValNo, const char *Start, const char *End)
-{
+static bool EvalPluralExpr(unsigned ValNo, const char *Start, const char *End) {
   // Empty condition?
   if (*Start == ':')
     return true;