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

[pull] swiftwasm from main #5534

Merged
merged 4 commits into from
Jun 19, 2023
Merged

[pull] swiftwasm from main #5534

merged 4 commits into from
Jun 19, 2023

Commits on Jun 17, 2023

  1. [MoveOnlyAddressChecker] Fix used fields repr.

    The address checker records uses in its livenessUses map.  Previously,
    that map mapped from an instruction to a range of fields of the type.
    But an instruction can use multiple discontiguous fields of a single
    value.  Here, such instructions are properly recorded by fixing the map
    to store a bit vector for each instruction.
    
    rdar://110676577
    nate-chandler committed Jun 17, 2023
    Configuration menu
    Copy the full SHA
    66867c0 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2023

  1. [FieldSensitivePL] Silenced warning.

    ```
    ../include/swift/SIL/FieldSensitivePrunedLiveness.h:531:54: warning: 'hasValue' is deprecated: Use has_value instead. [-Wdeprecated-declarations]
      bool isInitialized() const { return numBitsToTrack.hasValue(); }
                                                         ^~~~~~~~
                                                         has_value
    ```
    nate-chandler committed Jun 18, 2023
    Configuration menu
    Copy the full SHA
    6fecae9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request apple#66728 from nate-chandler/rdar110676577_2

    [MoveOnlyAddressChecker] Fix representation for used fields.
    swift-ci committed Jun 18, 2023
    Configuration menu
    Copy the full SHA
    bbed05b View commit details
    Browse the repository at this point in the history
  3. Merge pull request apple#66739 from nate-chandler/gardening/20230617/…

    …1/fix-warning
    
    Gardening: Silenced Optional::hasValue warning.
    nate-chandler committed Jun 18, 2023
    Configuration menu
    Copy the full SHA
    de45ab1 View commit details
    Browse the repository at this point in the history