From a31da1f7ab2c81d3fd6eb74f3950d73b56607852 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Tue, 17 Dec 2024 09:51:02 -0800 Subject: [PATCH] Fixing missing trace zone end in iree_io_scope_map. --- runtime/src/iree/io/scope_map.c | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/src/iree/io/scope_map.c b/runtime/src/iree/io/scope_map.c index 6b22455bccd1..c76cea31ac56 100644 --- a/runtime/src/iree/io/scope_map.c +++ b/runtime/src/iree/io/scope_map.c @@ -40,6 +40,7 @@ IREE_API_EXPORT iree_status_t iree_io_scope_map_lookup( if (iree_string_view_equal(scope, entry->scope)) { IREE_TRACE_ZONE_APPEND_TEXT(z0, "hit"); *out_index = entry->index; + IREE_TRACE_ZONE_END(z0); return iree_ok_status(); } }