diff options
author | 2016-06-24 16:19:36 +0100 | |
---|---|---|
committer | 2016-07-15 09:48:07 +0100 | |
commit | 97c72b76cf776228196c6abd33973ef751de61ad (patch) | |
tree | 7a78a2b19b0847281f8cf69af735b30b15732fa8 /compiler/optimizing/intrinsics_arm64.h | |
parent | 1fd347303275a424d114c9833f954e8e27812554 (diff) |
Fixes to build against new VIXL interface.
- Fix namespace usage and use of deprecated functions.
- Link all dependants to new libvixl-arm64 target for now.
Change-Id: Iee6f299784fd663fc2a759f3ee816fdbc511e509
Diffstat (limited to 'compiler/optimizing/intrinsics_arm64.h')
-rw-r--r-- | compiler/optimizing/intrinsics_arm64.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/optimizing/intrinsics_arm64.h b/compiler/optimizing/intrinsics_arm64.h index d47448a9c3..525153621b 100644 --- a/compiler/optimizing/intrinsics_arm64.h +++ b/compiler/optimizing/intrinsics_arm64.h @@ -20,10 +20,11 @@ #include "intrinsics.h" namespace vixl { +namespace aarch64 { class MacroAssembler; -} // namespace vixl +}} // namespace vixl::aarch64 namespace art { @@ -73,7 +74,7 @@ INTRINSICS_LIST(OPTIMIZING_INTRINSICS) #undef OPTIMIZING_INTRINSICS private: - vixl::MacroAssembler* GetVIXLAssembler(); + vixl::aarch64::MacroAssembler* GetVIXLAssembler(); ArenaAllocator* GetAllocator(); |