Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[LLVM][DWARF] Make dwarf::getDebugNamesBucketCount return a pair. #83047

Merged
merged 5 commits into from
Feb 27, 2024

Commits on Feb 26, 2024

  1. [LLVM][DWARF] Make dwarf::getDebugNamesBucketCount return a pair.

    llvm::dwarf::getDebugNamesBucketCount directly returns the bucket
    count, via return statement, but it also returns the hash count
    via a parameter. This changes the function to return them both as a
    std::pair, in the return statement. It also changes the name of the
    function to make it clear it returns both values.
    cmtice committed Feb 26, 2024
    Configuration menu
    Copy the full SHA
    840411d View commit details
    Browse the repository at this point in the history
  2. [LLVM][DWARF] Make dwarf::getDebugNamesBucketCount return a pair.

    Fix clang-format issue. Avoid unnecessary declaration before
    initialization.
    cmtice committed Feb 26, 2024
    Configuration menu
    Copy the full SHA
    8891de2 View commit details
    Browse the repository at this point in the history
  3. [LLVM][DWARF] Make dwarf::getDebugNamesBucketCount return a pair.

    Make local variables start with uppercase letter.
    cmtice committed Feb 26, 2024
    Configuration menu
    Copy the full SHA
    59d3949 View commit details
    Browse the repository at this point in the history
  4. [LLVM][DWARF] Make dwarf::getDebugNamesBucketCount return a pair.

    Make local variables start with uppercase letter.
    cmtice committed Feb 26, 2024
    Configuration menu
    Copy the full SHA
    821b902 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. [LLVM][DWARF] Make dwarf::getDebugNamesBucketCount return a pair.

    Fix case of parameter in comment.
    cmtice committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    380c69e View commit details
    Browse the repository at this point in the history