You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Ignore clang-analyzer-deadcode.DeadStores in BlobLibrary ctor
This is a dead store which we may want to eliminate. We do read from
this field earlier in the constructor, and the offset should
conceptually be incremented here, but it's never (currently) read after
the conditional + memcpy earlier in the method. I'm assuming it may have
been kept intentionally as potential future-proofing in case of future
use of offset later in the method. This write can safely be removed with
the current code though.
0 commit comments