Annotate UnsafeMemcpy for HWASan.

Same as ASan, HWASan does not agree with copying random parts of the
stack.

Bug: 112438058
Test: perfetto_integrationtests on hwasan build of android

Change-Id: Ia321f77eedf75a2c7442beb5771fef9ee0146c34
diff --git a/src/profiling/memory/wire_protocol.cc b/src/profiling/memory/wire_protocol.cc
index 8c71fcb..76b72d9 100644
--- a/src/profiling/memory/wire_protocol.cc
+++ b/src/profiling/memory/wire_protocol.cc
@@ -38,7 +38,7 @@
 
 // We need this to prevent crashes due to FORTIFY_SOURCE.
 void UnsafeMemcpy(char* dest, const char* src, size_t n)
-    __attribute__((no_sanitize("address"))) {
+    __attribute__((no_sanitize("address", "hwaddress"))) {
   for (size_t i = 0; i < n; ++i) {
     dest[i] = src[i];
   }