From b48b9eb6d181a1f52e2e605cf26a21505f1d46ed Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Fri, 28 Feb 2014 16:20:21 -0800 Subject: Fix clang to compile and run host tests. Don't use the computed goto interpreter with clang 3.4 as it causes compilation to hang. Avoid inclusion of LLVM_(HOST|DEVICE)_BUILD_MK except for with portable as it sets clang incompatible cflags. Most fixes are self-evident, for the quick dex file method inliner the enums were being used with ostreams, so fix the enums and operator out python script to allow this. Note this change effects portable but this is untestable as portable was broken by ELF file and mc linker changes. Change-Id: Ia54348f6b1bd3f76d3b71c6e8c5f97626386b903 --- runtime/jdwp/jdwp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/jdwp') diff --git a/runtime/jdwp/jdwp.h b/runtime/jdwp/jdwp.h index 1ec795f..fdbdfeb 100644 --- a/runtime/jdwp/jdwp.h +++ b/runtime/jdwp/jdwp.h @@ -96,9 +96,9 @@ struct JdwpOptions { }; struct JdwpEvent; -struct JdwpNetStateBase; +class JdwpNetStateBase; struct ModBasket; -struct Request; +class Request; /* * State for JDWP functions. -- cgit v1.1