Fix braino in arm64 codegen.

Pointers are 64bit there...

Bug: 148303458
Test: 597-deopt-busy-loop
Change-Id: Iee003f883665e4a668068b8e056380abc2f5fab4
diff --git a/compiler/optimizing/code_generator_arm64.cc b/compiler/optimizing/code_generator_arm64.cc
index 5ef7404..7d1b0ea 100644
--- a/compiler/optimizing/code_generator_arm64.cc
+++ b/compiler/optimizing/code_generator_arm64.cc
@@ -1081,7 +1081,7 @@
     ScopedObjectAccess soa(Thread::Current());
     ProfilingInfo* info = GetGraph()->GetArtMethod()->GetProfilingInfo(kRuntimePointerSize);
     if (info != nullptr) {
-      uint32_t address = reinterpret_cast32<uint32_t>(info);
+      uint64_t address = reinterpret_cast64<uint64_t>(info);
       vixl::aarch64::Label done;
       UseScratchRegisterScope temps(masm);
       Register temp = temps.AcquireX();