diff options
| author | 2014-08-20 15:08:45 -0700 | |
|---|---|---|
| committer | 2014-08-20 15:09:20 -0700 | |
| commit | e77493c7217efdd1a0ecef521a6845a13da0305b (patch) | |
| tree | 3055cb7aaea8b9edc498b2e209d74af36c32e0fd /compiler/dex | |
| parent | 41cba7c66cbc441b00fca48dfb2501181b1f2a53 (diff) | |
Make common BitVector operations inline-able.
Change-Id: Ie25de4fae56c6712539f04172c42e3eff57df7ca
Diffstat (limited to 'compiler/dex')
| -rw-r--r-- | compiler/dex/mir_graph.cc | 1 | ||||
| -rw-r--r-- | compiler/dex/mir_optimization.cc | 1 | ||||
| -rw-r--r-- | compiler/dex/ssa_transformation.cc | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/compiler/dex/mir_graph.cc b/compiler/dex/mir_graph.cc index dee1361a50..16b529a5e6 100644 --- a/compiler/dex/mir_graph.cc +++ b/compiler/dex/mir_graph.cc @@ -19,6 +19,7 @@ #include <inttypes.h> #include <queue> +#include "base/bit_vector-inl.h" #include "base/stl_util.h" #include "compiler_internals.h" #include "dex_file-inl.h" diff --git a/compiler/dex/mir_optimization.cc b/compiler/dex/mir_optimization.cc index c7dd85c9c2..6658848570 100644 --- a/compiler/dex/mir_optimization.cc +++ b/compiler/dex/mir_optimization.cc @@ -14,6 +14,7 @@ * limitations under the License. */ +#include "base/bit_vector-inl.h" #include "compiler_internals.h" #include "global_value_numbering.h" #include "local_value_numbering.h" diff --git a/compiler/dex/ssa_transformation.cc b/compiler/dex/ssa_transformation.cc index e26745ad5e..4a55de6891 100644 --- a/compiler/dex/ssa_transformation.cc +++ b/compiler/dex/ssa_transformation.cc @@ -14,6 +14,7 @@ * limitations under the License. */ +#include "base/bit_vector-inl.h" #include "compiler_internals.h" #include "dataflow_iterator-inl.h" #include "utils/scoped_arena_containers.h" |