Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dotnet/runtime
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1f26d24
Choose a base ref
...
head repository: dotnet/runtime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6c39236
Choose a head ref
  • 3 commits
  • 8 files changed
  • 5 contributors

Commits on Aug 14, 2021

  1. Properly account for padding in PUTARG_SPLIT with GT_FIELD_LIST (#57279)

    We were writing the stack part to the outgoing stack area by a loop
    incrementing the offset by the written size in each iteration. However,
    it is possible due to padding and optimization that the written size is
    smaller than the delta to the next field. Instead, use the offset of
    each field minus the offset of the first stack field to find the offset
    in the outgoing arg area.
    
    Fix #57064
    jakobbotsch authored Aug 14, 2021
    Configuration menu
    Copy the full SHA
    b2fc310 View commit details
    Browse the repository at this point in the history
  2. [wasm] Make sure the TargetOS is capitalized (#54927)

    Fixes: #54926
    
    The $(TargetOS) is used in $(TargetFrameworks) and is case sensitive.
    Make sure it is capitalized for Browser, so that build.cmd works when
    used like:
    
        ./build.cmd -bl -os browser -subset libs
    
    It fixes build errors like:
    
        C:\r\src\libraries\shims\manual\System.forwards.cs(8,88): error CS0234: The type or namespace name 'ZLibException' does not exist in the namespace 'System.IO.Compression' (are you missing an assembly reference?) [C:\r\src\libraries\shims\manual\System.csproj]
        C:\r\src\libraries\shims\manual\System.forwards.cs(9,77): error CS0234: The type or namespace name 'CookieVariant' does not exist in the namespace 'System.Net' (are you missing an assembly reference?) [C:\r\src\libraries\shims\manual\System.csproj]
        C:\r\src\libraries\shims\manual\System.forwards.cs(10,77): error CS0234: The type or namespace name 'PathList' does not exist in the namespace 'System.Net' (are you missing an assembly reference?) [C:\r\src\libraries\shims\manual\System.csproj]
    radekdoulik authored Aug 14, 2021
    Configuration menu
    Copy the full SHA
    d95758f View commit details
    Browse the repository at this point in the history
  3. [main] Update dependencies from mono/linker (#57203)

    * Update dependencies from https://github.com/mono/linker build 20210811.1
    
    Microsoft.NET.ILLink.Tasks
     From Version 6.0.100-preview.6.21409.3 -> To Version 6.0.100-preview.6.21411.1
    
    * Update dependencies from https://github.com/mono/linker build 20210811.2
    
    Microsoft.NET.ILLink.Tasks
     From Version 6.0.100-preview.6.21409.3 -> To Version 6.0.100-preview.6.21411.2
    
    * Update dependencies from https://github.com/mono/linker build 20210811.3
    
    Microsoft.NET.ILLink.Tasks
     From Version 6.0.100-preview.6.21409.3 -> To Version 6.0.100-preview.6.21411.3
    
    * Suppress trimmer warning
    
    * Fix warning code value
    
    * Fix netstandard build of libs
    
    * Revert the code fix and just fix the XML suppression
    
    * Revert project change
    
    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: vitek-karas <[email protected]>
    3 people authored Aug 14, 2021
    Configuration menu
    Copy the full SHA
    6c39236 View commit details
    Browse the repository at this point in the history
Loading