Fix cpplint whitespace/newline issues

Change-Id: Ie2049d9f667339e41f36c4f5d09f0d10d8d2c762
diff --git a/runtime/runtime_support.h b/runtime/runtime_support.h
index 051981f..a6c3b38 100644
--- a/runtime/runtime_support.h
+++ b/runtime/runtime_support.h
@@ -176,8 +176,12 @@
     case StaticObjectWrite:      is_primitive = false; is_set = true;  is_static = true;  break;
     case StaticPrimitiveRead:    is_primitive = true;  is_set = false; is_static = true;  break;
     case StaticPrimitiveWrite:   is_primitive = true;  is_set = true;  is_static = true;  break;
-    default: LOG(FATAL) << "UNREACHABLE";  // Assignment below to avoid GCC warnings.
-             is_primitive = true;  is_set = true;  is_static = true;  break;
+    default:
+      LOG(FATAL) << "UNREACHABLE";  // Assignment below to avoid GCC warnings.
+      is_primitive = true;
+      is_set = true;
+      is_static = true;
+      break;
   }
   if (UNLIKELY(resolved_field->IsStatic() != is_static)) {
     // Incompatible class change.