ART: Replace COMPILE_ASSERT with static_assert (runtime)

Replace all occurrences of COMPILE_ASSERT in the runtime tree.

Change-Id: I01e420899c760094fb342cc6cb9e692dd670a0b2
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc
index f5ac350..08efb70 100644
--- a/runtime/class_linker.cc
+++ b/runtime/class_linker.cc
@@ -5863,8 +5863,8 @@
     "[S",
     "[Ljava/lang/StackTraceElement;",
   };
-  COMPILE_ASSERT(arraysize(class_roots_descriptors) == size_t(kClassRootsMax),
-                 mismatch_between_class_descriptors_and_class_root_enum);
+  static_assert(arraysize(class_roots_descriptors) == size_t(kClassRootsMax),
+                "Mismatch between class descriptors and class-root enum");
 
   const char* descriptor = class_roots_descriptors[class_root];
   CHECK(descriptor != nullptr);