Files
clang-p2996/llvm/lib/CodeGen/CFIFixup.cpp
Kazu Hirata 7271681286 [CFIFixup] Add a default constructor to BlockFlags (NFC) (#125296)
This patch adds a default constructor to BlockFlags to initialize its
members to false, placing initializers close to the member
declarations.

Note that once C++20 is available in our codebase, we can replace
the explicit default constructor with:

  bool Reachable : 1 = true;
  :
2025-01-31 23:31:31 -08:00

14 KiB