diff options
Diffstat (limited to 'runtime/interpreter')
| -rw-r--r-- | runtime/interpreter/interpreter_goto_table_impl.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/interpreter/interpreter_goto_table_impl.cc b/runtime/interpreter/interpreter_goto_table_impl.cc index 5f97f941fb..af0a530688 100644 --- a/runtime/interpreter/interpreter_goto_table_impl.cc +++ b/runtime/interpreter/interpreter_goto_table_impl.cc @@ -14,6 +14,9 @@ * limitations under the License. */ +#if !defined(__clang__) +// Clang 3.4 fails to build the goto interpreter implementation. + #include "interpreter_common.h" #include "safe_math.h" @@ -2477,3 +2480,5 @@ JValue ExecuteGotoImpl<false, true>(Thread* self, const DexFile::CodeItem* code_ } // namespace interpreter } // namespace art + +#endif |
