diff options
Diffstat (limited to 'contrib/compiler-rt/lib/xray/xray_mips.cc')
-rw-r--r-- | contrib/compiler-rt/lib/xray/xray_mips.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/compiler-rt/lib/xray/xray_mips.cc b/contrib/compiler-rt/lib/xray/xray_mips.cc index cd863304db29..6f8243828668 100644 --- a/contrib/compiler-rt/lib/xray/xray_mips.cc +++ b/contrib/compiler-rt/lib/xray/xray_mips.cc @@ -158,6 +158,12 @@ bool patchCustomEvent(const bool Enable, const uint32_t FuncId, return false; } +bool patchTypedEvent(const bool Enable, const uint32_t FuncId, + const XRaySledEntry &Sled) XRAY_NEVER_INSTRUMENT { + // FIXME: Implement in mips? + return false; +} + } // namespace __xray extern "C" void __xray_ArgLoggerEntry() XRAY_NEVER_INSTRUMENT { |