diff options
| -rw-r--r-- | compiler-rt/lib/xray/xray_profile_collector.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/xray/xray_profile_collector.cc b/compiler-rt/lib/xray/xray_profile_collector.cc index 2ef3ebd940c..5f014ee633d 100644 --- a/compiler-rt/lib/xray/xray_profile_collector.cc +++ b/compiler-rt/lib/xray/xray_profile_collector.cc @@ -95,7 +95,7 @@ void post(const FunctionCallTrie &T, tid_t TId) XRAY_NEVER_INSTRUMENT { if (GlobalAllocators == nullptr || ThreadTries == nullptr) return; - Item = ThreadTries->Append({}); + Item = ThreadTries->Append(ThreadTrie()); if (Item == nullptr) return; |

