ART: Replace an "ALWAYS_INLINE" with "inline" to fix build.

Change-Id: I61e6806737589266b36ab7a33561da7e1f8c02ca
diff --git a/runtime/oat_file.cc b/runtime/oat_file.cc
index 80c103e..a162a4e 100644
--- a/runtime/oat_file.cc
+++ b/runtime/oat_file.cc
@@ -412,9 +412,9 @@
 // position by the number of bytes read, i.e. sizeof(T).
 // Return true on success, false if the read would go beyond the end of the OatFile.
 template <typename T>
-ALWAYS_INLINE static bool ReadOatDexFileData(const OatFile& oat_file,
-                                             /*inout*/const uint8_t** oat,
-                                             /*out*/T* value) {
+inline static bool ReadOatDexFileData(const OatFile& oat_file,
+                                      /*inout*/const uint8_t** oat,
+                                      /*out*/T* value) {
   DCHECK(oat != nullptr);
   DCHECK(value != nullptr);
   DCHECK_LE(*oat, oat_file.End());