diff options
author | 2015-10-15 17:47:48 -0700 | |
---|---|---|
committer | 2015-10-23 11:21:11 -0700 | |
commit | e5d80f83ae53792bc1eebd4e33e4e99f7c031b0c (patch) | |
tree | cc21ac068a5d02349c5b1aaa8c7f61ae777f6cea /compiler/optimizing/nodes.h | |
parent | a815f17cc82f4f238d8bdec1bd5b70fec720541e (diff) |
Move ArenaBitVector into the runtime
Motivation is using arenas in the verifier.
Bug: 10921004
Change-Id: I3c7ed369194b2309a47b12a621e897e0f2f65fcf
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index cadb24c659..7aa933ddf0 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -21,6 +21,7 @@ #include <array> #include <type_traits> +#include "base/arena_bit_vector.h" #include "base/arena_containers.h" #include "base/arena_object.h" #include "base/stl_util.h" @@ -34,7 +35,6 @@ #include "mirror/class.h" #include "offsets.h" #include "primitive.h" -#include "utils/arena_bit_vector.h" namespace art { |