diff options
-rw-r--r-- | compiler-rt/lib/xray/xray_AArch64.cc | 2 | ||||
-rw-r--r-- | compiler-rt/lib/xray/xray_arm.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/xray/xray_AArch64.cc b/compiler-rt/lib/xray/xray_AArch64.cc index 372c1ad876a..f26e77dd7fc 100644 --- a/compiler-rt/lib/xray/xray_AArch64.cc +++ b/compiler-rt/lib/xray/xray_AArch64.cc @@ -107,7 +107,7 @@ bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId, } bool patchCustomEvent(const bool Enable, const uint32_t FuncId, - const XRaySled &Sled) + const XRaySledEntry &Sled) XRAY_NEVER_INSTRUMENT { // FIXME: Implement in aarch64? return false; } diff --git a/compiler-rt/lib/xray/xray_arm.cc b/compiler-rt/lib/xray/xray_arm.cc index 94e1c2638f6..da4efcdd2b1 100644 --- a/compiler-rt/lib/xray/xray_arm.cc +++ b/compiler-rt/lib/xray/xray_arm.cc @@ -144,7 +144,7 @@ bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId, } bool patchCustomEvent(const bool Enable, const uint32_t FuncId, - const XRaySled &Sled) + const XRaySledEntry &Sled) XRAY_NEVER_INSTRUMENT { // FIXME: Implement in arm? return false; } |