diff options
author | 2017-06-01 13:45:54 -0700 | |
---|---|---|
committer | 2017-06-02 08:24:02 -0700 | |
commit | b486a98aadc95d80548953410cf23edba62259fa (patch) | |
tree | b113b7d50a4a015502873b7742c9ece00d293e84 /compiler/optimizing/intrinsics.cc | |
parent | 1656ca9e6996cb555b4463e5efd4bd7e3f4fb816 (diff) |
ART: Introduce thread-current-inl.h
Factor out Thread::Current() code into its own -inl file to remove
transitive includes.
This requires at the same time correcting mutex.h, i.e., moving
some functions into mutex-inl.h.
Test: m test-art-host
Change-Id: I88f888b604e0897368d9b483edce6ce4332dd9c9
Diffstat (limited to 'compiler/optimizing/intrinsics.cc')
-rw-r--r-- | compiler/optimizing/intrinsics.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/intrinsics.cc b/compiler/optimizing/intrinsics.cc index b1d2727e39..b664d41013 100644 --- a/compiler/optimizing/intrinsics.cc +++ b/compiler/optimizing/intrinsics.cc @@ -25,7 +25,7 @@ #include "mirror/dex_cache-inl.h" #include "nodes.h" #include "scoped_thread_state_change-inl.h" -#include "thread-inl.h" +#include "thread-current-inl.h" #include "utils.h" namespace art { |