Fix a compiler warning.

Change-Id: I4c4e2a4a248e4336fef735f75ff5648d8d33627e
diff --git a/src/google/protobuf/compiler/js/js_generator.cc b/src/google/protobuf/compiler/js/js_generator.cc
index 1e30846..3ffa953 100755
--- a/src/google/protobuf/compiler/js/js_generator.cc
+++ b/src/google/protobuf/compiler/js/js_generator.cc
@@ -690,6 +690,8 @@
     case FieldDescriptor::CPPTYPE_MESSAGE:
       return "null";
   }
+  GOOGLE_LOG(FATAL) << "Shouldn't reach here.";
+  return "";
 }
 
 string ProtoTypeName(const GeneratorOptions& options,